Skip to content

Commit

Permalink
Negate
Browse files Browse the repository at this point in the history
  • Loading branch information
MaartendeKruijf committed Mar 8, 2024
1 parent de2b171 commit b475244
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ on:
jobs:
check-branch-name:
if: |
${{! (contains(github.ref_name, 'feature/') || contains(github.ref_name, 'development')
|| contains(github.ref_name, 'master') || contains(github.ref_name, 'bugfix/')
|| contains(github.ref_name, 'hotfix/') || contains(github.ref_name, 'release/') ) }}
${{ ! contains(github.ref_name, 'feature/') || ! contains(github.ref_name, 'development')
|| ! contains(github.ref_name, 'master') || ! contains(github.ref_name, 'bugfix/')
||! contains(github.ref_name, 'hotfix/') || ! contains(github.ref_name, 'release/') }}
runs-on: ubuntu-latest
steps:
- name: Fail
Expand Down

0 comments on commit b475244

Please sign in to comment.