Skip to content

Commit

Permalink
Don't check on push branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperpeulen committed Nov 8, 2022
1 parent b508472 commit c864017
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/trigger-circle-ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
push:
branches:
- next
- special

jobs:
get-branch:
Expand Down Expand Up @@ -67,7 +66,7 @@ jobs:
trigger-merged-tests:
runs-on: ubuntu-latest
needs: get-branch
if: (github.event_name == 'push' && github.ref_name == 'next') || (contains(github.event.pull_request.labels.*.name, 'ci:merged') && !contains(github.event.pull_request.labels.*.name, 'ci:daily'))
if: github.event_name == 'push' || (contains(github.event.pull_request.labels.*.name, 'ci:merged') && !contains(github.event.pull_request.labels.*.name, 'ci:daily'))
steps:
- name: Trigger merged tests
run: >
Expand Down

0 comments on commit c864017

Please sign in to comment.