We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0438367 commit 0214f3fCopy full SHA for 0214f3f
.github/workflows/build.yml
@@ -26,3 +26,17 @@ jobs:
26
run: ./.github/scripts/build.sh
27
env:
28
PYTHON_VERSION: ${{ matrix.python-version }}
29
+
30
+ watcher:
31
+ runs-on: ubuntu-latest
32
+ needs: build
33
+ if: always()
34
+ steps:
35
+ - run: echo "${{ needs.build.result }}"
36
+ - name: failing...
37
+ if: needs.build.result == 'failure'
38
+ run: exit 1
39
+ - name: cancelled or skipped...
40
+ if: contains(fromJSON('["cancelled", "skipped"]'), needs.build.result)
41
+ timeout-minutes: 1
42
+ run: sleep 90
0 commit comments