1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-27 01:33:39 +02:00

added templates

closes #274
This commit is contained in:
Carlos Alexandro Becker 2017-09-02 22:51:03 -03:00
parent 19c5cf279e
commit be4f43af65
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
3 changed files with 44 additions and 0 deletions

30
.github/ISSUE_TEMPLATE.md vendored Normal file
View File

@ -0,0 +1,30 @@
### Prerequisites
* [ ] Are you running the latest version?
* [ ] Did you perform a search to see if this problem was already reported?
For more information, see the `CONTRIBUTING` guide.
### Description
[Description of the bug or feature]
### Environment
Please paste the output of:
- `go version`
- `uname -a`
- `goreleaser --debug`
### Steps to Reproduce
1. [First Step]
2. [Second Step]
3. [and so on...]
**Expected behavior:** [What you expected to happen]
**Actual behavior:** [What actually happened]

13
.github/PULL_REQUEST_TEMPLATE.md vendored Normal file
View File

@ -0,0 +1,13 @@
## Types of changes
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)
- [ ] I have read the **CONTRIBUTING** document.
- [ ] `make ci` passes on my machine.
- [ ] My change requires a change to the documentation.
- [ ] I have updated the documentation accordingly.
- [ ] I have added tests to cover my changes.

View File

@ -37,6 +37,7 @@ func (Pipe) Run(ctx *context.Context) (err error) {
CurrentTag: tag,
Commit: commit,
}
log.Infof("releasing %s, commit %s", tag, commit)
if err = setLog(ctx, tag, commit); err != nil {
return
}