github.com/Kong/go-pdk@v0.11.0/.goreleaser.yaml (about)

     1  builds:
     2    - skip: true
     3  
     4  changelog:
     5    sort: asc
     6    use: github
     7    filters:
     8      exclude:
     9        - "^test:"
    10        - "^chore"
    11        - "merge conflict"
    12        - Merge pull request
    13        - Merge remote-tracking branch
    14        - Merge branch
    15        - go mod tidy
    16    groups:
    17      - title: Dependency updates
    18        regexp: '^.*?(feat|fix)\(deps\)!?:.+$'
    19        order: 300
    20      - title: "New Features"
    21        regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
    22        order: 100
    23      - title: "Bug fixes"
    24        regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
    25        order: 200
    26      - title: "Build process updates"
    27        regexp: ^.*?build(\([[:word:]]+\))??!?:.+$
    28        order: 400
    29      - title: Other work
    30        order: 9999
    31  
    32  release:
    33    footer: |
    34      **Full Changelog**: https://github.com/Kong/go-pdk/compare/{{ .PreviousTag }}...{{ .Tag }}
    35    github:
    36      owner: Kong
    37      name: go-pdk
    38    target_commitish: "{{ .Commit }}"
    39