Skip to content

Commit

Permalink
combine checks for semver
Browse files Browse the repository at this point in the history
  • Loading branch information
jkelleyrtp committed Feb 22, 2024
1 parent 862d2ea commit 7692907
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,7 @@ jobs:
# However, this means we won't attempt to backport them, so you should be careful about using this label, as it will
# likely make future backporting difficult
semver:
if: github.event.pull_request.draft == false
if: ${{ !contains(github.event.pull_request.labels.*.name, 'breaking') }}
if: github.event.pull_request.draft == false && !contains(github.event.pull_request.labels.*.name, 'breaking')
name: Semver Check
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 7692907

Please sign in to comment.