Skip to content

Commit

Permalink
Add condition on job check_pr_title (#746)
Browse files Browse the repository at this point in the history
Now the job is skipped on PRs created by changeset
  • Loading branch information
kin0992 authored Mar 14, 2024
1 parent 3fb9f41 commit b05bcc7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/check_pr_title.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
jobs:

check_pr_title:
# Execute this job only if the head branch is not the one created by changeset
if: ${{ github.head_ref }} != 'changeset-release/main'
name: Check PR title
runs-on: ubuntu-latest

Expand Down

0 comments on commit b05bcc7

Please sign in to comment.