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 f9acac2 commit e2ff80fCopy full SHA for e2ff80f
.github/workflows/circleci.yml
@@ -1,8 +1,7 @@
1
name: CircleCI artifacts redirector
2
on:
3
- check_run:
4
- types: completed
5
-
+ status:
+ if: github.event.state == 'success'
6
jobs:
7
circleci_artifacts_redirector_job:
8
if: github.event.description == 'Your tests passed on CircleCI!'
@@ -12,8 +11,10 @@ jobs:
12
11
- name: DEBUG
13
env:
14
DESCRIPTION: ${{ github.event.description }}
+ STATUSSTATE: ${{ github.event.state }}
15
run: |
16
echo The event description: $DESCRIPTION
17
+ echo The event state: $STATUSSTATE
18
- name: GitHub Action step
19
uses: larsoner/circleci-artifacts-redirector-action@master
20
with:
0 commit comments