- workaround build issue on Xcode 14.2 (GitHub actions), preventing d… #1371
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: Calens Changelog | |
# This workflow is triggered on pushes to the repository. | |
on: | |
push: | |
branches: | |
- fix/* | |
- feature/* | |
- milestone/* | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
name: Generate Calens Changelog | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Calens Docker | |
uses: addnab/docker-run-action@v1 | |
with: | |
options: -v ${{github.workspace}}:/workspace -w /workspace | |
image: toolhippie/calens:latest | |
run: calens >| CHANGELOG.md | |
- name: Commit files | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Calens changelog updated | |
file_pattern: CHANGELOG.md |