Skip to content

Merge pull request #421 from Anthony-19/add-Foundry-deployment-script #31

Merge pull request #421 from Anthony-19/add-Foundry-deployment-script

Merge pull request #421 from Anthony-19/add-Foundry-deployment-script #31

Workflow file for this run

name: Changelog
on:
push:
branches:
- main
permissions:
contents: write
jobs:
update-changelog:
name: Generate and Commit CHANGELOG
if: github.actor != 'github-actions[bot]'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Generate CHANGELOG.md
uses: orhun/git-cliff-action@v4
with:
config: cliff.toml
args: --verbose --output CHANGELOG.md
- name: Commit and push CHANGELOG.md
uses: stefanzweifel/git-auto-commit-action@v5
with:
file_pattern: CHANGELOG.md
commit_message: "chore(changelog): update changelog [skip ci]"
commit_user_name: github-actions[bot]
commit_user_email: 41898282+github-actions[bot]@users.noreply.github.com