Don't cancel stable and unstable builds as well
This commit is contained in:
parent
87955f2d37
commit
b13751fb53
|
@ -90,7 +90,9 @@ jobs:
|
||||||
- name: Cancel Previous Runs (except master/devel)
|
- name: Cancel Previous Runs (except master/devel)
|
||||||
if: >
|
if: >
|
||||||
steps.get_branch.outputs.branch_name != 'master' &&
|
steps.get_branch.outputs.branch_name != 'master' &&
|
||||||
steps.get_branch.outputs.branch_name != 'devel'
|
steps.get_branch.outputs.branch_name != 'devel' &&
|
||||||
|
steps.get_branch.outputs.branch_name != 'stable' &&
|
||||||
|
steps.get_branch.outputs.branch_name != 'unstable'
|
||||||
uses: styfle/cancel-workflow-action@0.5.0
|
uses: styfle/cancel-workflow-action@0.5.0
|
||||||
with:
|
with:
|
||||||
access_token: ${{ github.token }}
|
access_token: ${{ github.token }}
|
||||||
|
|
Loading…
Reference in New Issue