We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49554bc commit 103b21aCopy full SHA for 103b21a
.github/workflows/default_completed.yml
@@ -0,0 +1,24 @@
1
+name: Default (completed)
2
+
3
+on:
4
+ workflow_run:
5
+ workflows: 'Default'
6
+ types:
7
+ - completed
8
9
+jobs:
10
+ context:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: ./.github/actions/context
14
15
+ on-success:
16
17
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
18
19
+ - run: echo 'The triggering workflow passed'
20
+ on-failure:
21
22
+ if: ${{ github.event.workflow_run.conclusion == 'failure' }}
23
24
+ - run: echo 'The triggering workflow failed'
0 commit comments