Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/update-release-changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# On every push to a release branch (Version-v* or release/*), this workflow rebuilds the matching
# changelog branch, re-runs the auto-changelog script, and either updates or recreates the changelog PR.
name: Update Release Changelog PR

on:
push:
branches:
- 'release/*'

concurrency:
group: update-release-changelog-${{ github.ref }}
cancel-in-progress: false

jobs:
refresh-changelog:
permissions:
contents: write
pull-requests: write
uses: MetaMask/github-tools/.github/workflows/update-release-changelog.yml@36dc168896c1b496f35fc880ee8a3625b4b837ba
with:
release-branch: ${{ github.ref_name }}
repository-url: ${{ github.server_url }}/${{ github.repository }}
platform: extension
github-tools-version: 36dc168896c1b496f35fc880ee8a3625b4b837ba
previous-version-ref: null
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Unnecessary Parameter in Code

The previous-version-ref: null parameter appears to be unnecessary based on reviewer feedback ("these new lines are not needed"). This parameter should likely be removed entirely rather than explicitly set to null.

Fix in Cursor Fix in Web

secrets:
github-token: ${{ secrets.PR_TOKEN }}
Loading