more changes #3168
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: | |
- feature/* | |
- fix/* | |
- improvement/* | |
- release/* | |
- technical/* | |
permissions: | |
contents: read | |
jobs: | |
build: | |
permissions: | |
contents: write # for stefanzweifel/git-auto-commit-action to push code in repo | |
runs-on: ubuntu-22.04 | |
name: Generate Calens Changelog | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Calens Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
options: -v ${{github.workspace}}:/workspace -w /workspace | |
image: toolhippie/calens:latest | |
run: calens >| CHANGELOG.md | |
- name: Commit files | |
run: | | |
git config --global user.name 'joragua' | |
git config --global user.email '[email protected]' | |
git add CHANGELOG.md | |
git commit -m "Update changelog [skip ci]" | |
git push |