From 8515bdddde06b35cbc3ac057f7b7fd09deded068 Mon Sep 17 00:00:00 2001 From: LizardByte-bot <108553330+LizardByte-bot@users.noreply.github.com> Date: Mon, 20 May 2024 17:14:15 -0400 Subject: [PATCH] chore: update global workflows (#84) --- .github/workflows/update-changelog.yml | 31 -------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/update-changelog.yml diff --git a/.github/workflows/update-changelog.yml b/.github/workflows/update-changelog.yml deleted file mode 100644 index d5bbed6..0000000 --- a/.github/workflows/update-changelog.yml +++ /dev/null @@ -1,31 +0,0 @@ ---- -# This action is centrally managed in https://github.com//.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 }}