Release 2.4.1 for CSM 1.6 #386
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: 'dependabot-pr-changelog-helper' | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
- labeled | |
- unlabeled | |
jobs: | |
changelog: | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Depending on your needs, you can use a token that will re-trigger workflows | |
# See https://github.com/stefanzweifel/git-auto-commit-action#commits-of-this-action-do-not-trigger-new-workflow-runs | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: dangoslen/dependabot-changelog-helper@v3 | |
with: | |
version: 'Unreleased' | |
activationLabel: 'dependabot' | |
changelogPath: './CHANGELOG.md' | |
# This step is required for committing the changes to your branch. | |
# See https://github.com/stefanzweifel/git-auto-commit-action#commits-of-this-action-do-not-trigger-new-workflow-runs | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "Updated Changelog" |