github.com/goreleaser/goreleaser@v1.25.1/www/docs/customization/milestone.md (about)

     1  # Closing Milestones
     2  
     3  GoReleaser can close repository milestones after successfully publishing all
     4  artifacts.
     5  
     6  Let's see what can be customized in the `milestones` section:
     7  
     8  ```yaml
     9  # .goreleaser.yaml
    10  milestones:
    11    # You can have multiple milestone configs
    12    -
    13      # Repository for the milestone
    14      # Default is extracted from the origin remote URL
    15      repo:
    16        owner: user
    17        name: repo
    18  
    19      # Whether to close the milestone
    20      close: true
    21  
    22      # Fail release on errors, such as missing milestone.
    23      fail_on_error: true
    24  
    25      # Name of the milestone
    26      #
    27      # Default: '{{ .Tag }}'
    28      name_template: "Current Release"
    29  ```
    30  
    31  !!! tip
    32      Learn more about the [name template engine](/customization/templates/).