From fba041e71f2c83464326d4d000be9ef6cdb795e4 Mon Sep 17 00:00:00 2001 From: Christopher Berge Hove Date: Thu, 26 Oct 2023 13:35:59 +0200 Subject: [PATCH] chore: should not run Get PR description on release branch --- .github/workflows/common-changeset-pr.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/common-changeset-pr.yml b/.github/workflows/common-changeset-pr.yml index faf873030..24dc7c135 100644 --- a/.github/workflows/common-changeset-pr.yml +++ b/.github/workflows/common-changeset-pr.yml @@ -3,14 +3,12 @@ name: Get PR description on: pull_request: types: [opened, synchronize, edited, ready_for_review] - branches-ignore: - - changeset-release/main jobs: print_title_of_pr: name: Auto Generate Changset based on pull request body runs-on: ubuntu-latest - if: github.event.pull_request.draft == false + if: github.event.pull_request.draft == false && github.ref_name != 'changeset-release/main' steps: - name: Checkout uses: actions/checkout@v3