Bumped Deployment version and added proper support for modern Xcodes #11
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: Generate Changelog For Master | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
changelog_prerelease: | |
name: Update Changelog For Prerelease | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
ref: master | |
- name: Update Changelog | |
uses: heinrichreimer/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issues: true | |
issuesWoLabels: true | |
pullRequests: true | |
prWoLabels: true | |
unreleased: true | |
addSections: '{"documentation":{"prefix":"**Documentation:**","labels":["documentation"]}}' | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update Changelog for PR | |
file_pattern: CHANGELOG.md |