Post notification permission to allow icon to be shown for Android 13… #63
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-generator | |
on: | |
push: | |
branches: [stable] | |
jobs: | |
generate_changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Generate changelog | |
uses: heinrichreimer/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
sinceTag: '1.0.0-rc.1' | |
issues: true | |
issuesWoLabels: true | |
pullRequests: true | |
prWoLabels: true | |
unreleased: true | |
author: true | |
addSections: '{"documentation":{"prefix":"**Documentation:**","labels":["documentation"]}}' | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update Changelog | |
file_pattern: CHANGELOG.md |