Skip to content

Commit

Permalink
chore: should not run Get PR description on release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggling committed Oct 26, 2023
1 parent aabdc6e commit fba041e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/common-changeset-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fba041e

Please sign in to comment.