We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 564f3ce commit ea3318dCopy full SHA for ea3318d
2 files changed
.github/workflows/ci.yml
@@ -7,7 +7,7 @@ on:
7
workflow_dispatch:
8
jobs:
9
cancel_previous:
10
- if: ${{ !env.ACT }}
+ if: ${{ github.event_name != 'push' }}
11
runs-on: ubuntu-latest
12
steps:
13
- uses: styfle/cancel-workflow-action@0.12.1
scripts/act-ci.sh
@@ -20,6 +20,7 @@ done
20
CMD=(act)
21
CMD+=(--pull=false)
22
CMD+=(--platform "${PLATFORM}")
23
+CMD+=(--input ACT=true)
24
if [[ -n "$JOB" ]]; then
25
CMD+=(--job "$JOB")
26
fi
0 commit comments