Changelog #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Changelog | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- release/* | |
jobs: | |
changelog: | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission. | |
# https://github.blog/changelog/2023-02-02-github-actions-updating-the-default-github_token-permissions-to-read-only/ | |
contents: write | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/[email protected] | |
- name: "Generate release changelog" | |
uses: janheinrichmerker/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
addSections: '{"feature":{"prefix":"**Implemented Features:**","labels":["Feature"]}}' | |
prWoLabels: false | |
excludeLabels: '"Build","Mend: configuration error"' | |
breakingLabels: "Breaking Change" | |
enhancementLabel: "**Implemented improvements:**" | |
enhancementLabels: "Improvement" | |
- uses: stefanzweifel/[email protected] | |
with: | |
commit_message: Auto update changelog |