From 502648ebf702c7580c61fb58e41778ffa7f5f80b Mon Sep 17 00:00:00 2001 From: Eric Warehime Date: Fri, 7 Feb 2025 15:38:12 -0500 Subject: [PATCH] Add workflow for dependabot changelog updates --- .github/workflows/dependabot-changelog.yml | 19 +++++++++++++++++++ CHANGELOG.md | 2 ++ 2 files changed, 21 insertions(+) create mode 100644 .github/workflows/dependabot-changelog.yml diff --git a/.github/workflows/dependabot-changelog.yml b/.github/workflows/dependabot-changelog.yml new file mode 100644 index 0000000000..227c1c701a --- /dev/null +++ b/.github/workflows/dependabot-changelog.yml @@ -0,0 +1,19 @@ +name: Dependabot Changelog Entry + +on: + pull_request: + types: [opened, reopened] + branches: [main] + +jobs: + update-changelog: + if: github.actor == 'dependabot[bot]' + runs-on: ubuntu-latest + permissions: + contents: write # needed for pushing changes + + steps: + - uses: actions/checkout@v4 + - uses: crambl/dependabot-changelog-writer@trunk # Always use the latest RELEASED version of this action + with: + changelog-entry-pattern: 'Bump [dep] from [old] to [new] ([pr-link])' diff --git a/CHANGELOG.md b/CHANGELOG.md index 441001caf9..c1acf9785a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## UNRELEASED +### DEPENDENCIES + ### BUG FIXES - Export only validators that are participating in consensus ([\#3490](https://github.com/cosmos/gaia/pull/3490))