Skip to content

Commit

Permalink
Add workflow for dependabot changelog updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric-Warehime committed Feb 7, 2025
1 parent 6f9ded8 commit 502648e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/dependabot-changelog.yml
Original file line number Diff line number Diff line change
@@ -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])'
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## UNRELEASED

### DEPENDENCIES

### BUG FIXES
- Export only validators that are participating in consensus
([\#3490](https://github.com/cosmos/gaia/pull/3490))
Expand Down

0 comments on commit 502648e

Please sign in to comment.