chore: update global workflows (#2547)
This commit is contained in:
parent
fdb443a7c6
commit
26ceec5f3c
1 changed files with 31 additions and 0 deletions
31
.github/workflows/update-changelog.yml
vendored
Normal file
31
.github/workflows/update-changelog.yml
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
---
|
||||||
|
# This action is centrally managed in https://github.com/<organization>/.github/
|
||||||
|
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in
|
||||||
|
# the above-mentioned repo.
|
||||||
|
|
||||||
|
# Update changelog on release events.
|
||||||
|
|
||||||
|
name: Update changelog
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [created, edited, deleted]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: "${{ github.workflow }}"
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-changelog:
|
||||||
|
if: >-
|
||||||
|
github.event_name == 'workflow_dispatch' ||
|
||||||
|
(!github.event.release.prerelease && !github.event.release.draft)
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Update Changelog
|
||||||
|
uses: LizardByte/update-changelog-action@v2024.520.183314
|
||||||
|
with:
|
||||||
|
changelogBranch: changelog
|
||||||
|
changelogFile: CHANGELOG.md
|
||||||
|
token: ${{ secrets.GH_BOT_TOKEN }}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue