Create data_flow.md #3
This file contains hidden or 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: Update CHANGELOG | |
on: | |
push: | |
branches: | |
- main | |
release: | |
types: [published] | |
permissions: | |
contents: write | |
jobs: | |
update-changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Generate CHANGELOG | |
uses: janheinrichmerker/action-github-changelog-generator@v2.4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
output: CHANGELOG.md | |
- name: Commit and Push CHANGELOG | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "Auto-update CHANGELOG [skip ci]" | |
file_pattern: CHANGELOG.md |