Bumps the lizardbyte-actions group with 2 updates: [LizardByte/homebrew-release-action](https://github.com/lizardbyte/homebrew-release-action) and [LizardByte/update-changelog-action](https://github.com/lizardbyte/update-changelog-action). Updates `LizardByte/homebrew-release-action` from 2024.1115.14934 to 2025.426.194543 - [Release notes](https://github.com/lizardbyte/homebrew-release-action/releases) - [Commits](https://github.com/lizardbyte/homebrew-release-action/compare/v2024.1115.14934...v2025.426.194543) Updates `LizardByte/update-changelog-action` from 2024.919.152649 to 2025.426.173858 - [Release notes](https://github.com/lizardbyte/update-changelog-action/releases) - [Commits](https://github.com/lizardbyte/update-changelog-action/compare/v2024.919.152649...v2025.426.173858) --- updated-dependencies: - dependency-name: LizardByte/homebrew-release-action dependency-version: 2025.426.194543 dependency-type: direct:production update-type: version-update:semver-major dependency-group: lizardbyte-actions - dependency-name: LizardByte/update-changelog-action dependency-version: 2025.426.173858 dependency-type: direct:production update-type: version-update:semver-major dependency-group: lizardbyte-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37 lines
947 B
YAML
37 lines
947 B
YAML
---
|
|
# This workflow 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
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- created
|
|
- edited
|
|
- deleted
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: "${{ github.workflow }}"
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
update-changelog:
|
|
name: 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@v2025.426.173858
|
|
with:
|
|
changelogBranch: changelog
|
|
changelogFile: CHANGELOG.md
|
|
token: ${{ secrets.GH_BOT_TOKEN }}
|