From 73875fcb9997aaeb891f8fd9ffcb75c2cde59354 Mon Sep 17 00:00:00 2001 From: Thomas Farr Date: Tue, 11 Jul 2023 10:06:03 +1200 Subject: [PATCH] Add skip-changelog label to version bump PRs (#264) Signed-off-by: Thomas Farr --- .github/workflows/bump-version.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index a4352520af..e9d4098de9 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -30,7 +30,7 @@ jobs: run: bash .github/bump-version.sh "${{ github.event.inputs.version }}" - name: Create Pull Request - uses: peter-evans/create-pull-request@v3 + uses: peter-evans/create-pull-request@v5 with: token: ${{ steps.github_app_token.outputs.token }} base: ${{ github.event.inputs.branch }} @@ -39,6 +39,7 @@ jobs: signoff: true delete-branch: true title: 'Bump version on ${{ github.event.inputs.branch }} to ${{ github.event.inputs.version }}.' + labels: skip-changelog body: | Bumping version on `${{ github.event.inputs.branch }}` to `${{ github.event.inputs.version }}`.