1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-07-05 00:59:04 +02:00
Files
goreleaser/www/docs/customization/milestone.md

31 lines
666 B
Markdown
Raw Permalink Normal View History

2021-10-30 09:50:23 -03:00
# Closing Milestones
GoReleaser can close repository milestones after successfully publishing all
artifacts.
Let's see what can be customized in the `milestones` section:
```yaml title=".goreleaser.yaml"
milestones:
# You can have multiple milestone configs
- # Repository for the milestone
#
# Default: extracted from the origin remote URL.
repo:
owner: user
name: repo
# Whether to close the milestone
close: true
# Fail release on errors, such as missing milestone.
fail_on_error: true
# Name of the milestone
#
# Default: '{{ .Tag }}'.
name_template: "Current Release"
```
<!-- md:templates -->