OMS-369 Support Added for NetBox v4.1 #68
Workflow file for this run
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: Changelog Generator | |
# Controls when the action will run. Triggers the workflow on push or pull request events | |
on: | |
pull_request: | |
types: [closed] | |
release: | |
types: [published] | |
issues: | |
types: [closed, edited] | |
jobs: | |
build: | |
name: "Changelog Generator" | |
runs-on: ubuntu-latest | |
if: github.ref_protected != 'true' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4.1.1 | |
- name: "Generate changelog" | |
id: changelog | |
uses: charmixer/auto-changelog-action@v1.4 | |
with: | |
exclude_labels: "status: abandoned,type: duplicate,type: question,type: wontfix,type: invalid" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Commit and push to dev | |
uses: EndBug/add-and-commit@v9 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
add: "CHANGELOG.md" | |
message: "[skip ci] Updated CHANGELOG.md" | |
new_branch: dev | |
push: origin dev --set-upstream | |
committer_name: GitHub Actions | |
committer_email: actions@github.com | |
default_author: github_actions |