1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/www/docs/customization/milestone.md
Carlos Alexandro Becker 164d462470
docs: improve customization section (#2507)
* docs: improve customization section

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: improve docs

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: ignore edit urls in htmltest

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
2021-09-27 22:43:00 -03:00

36 lines
782 B
Markdown

---
title: Closing Milestones
---
GoReleaser can close repository milestones after successfully
publishing all artifacts.
Let's see what can be customized in the `milestones` section:
```yaml
# .goreleaser.yml
milestones:
# You can have multiple milestone configs
-
# Repository for the milestone
# Default is extracted from the origin remote URL
repo:
owner: user
name: repo
# Whether to close the milestone
# Default is false
close: true
# Fail release on errors, such as missing milestone on close
# Default is false
fail_on_error: true
# Name of the milestone
# Default is `{{ .Tag }}`
name_template: "Current Release"
```
!!! tip
Learn more about the [name template engine](/customization/templates/).