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
Ben Sandberg 9a19dee300
docs: fix internal links that result in a broken navigation sidebar (#1909)
I suspect this is something about the mkdocs template, but I'm not familiar enough, and this is easy.
2020-11-19 17:31:26 -03:00

773 B

title
Milestone

GoReleaser can close repository milestones after successfully publishing all artifacts.

Let's see what can be customized in the milestones section:

# .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.