summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/steps-context/conclusion/push.yml
blob: aff6bb4ffa9b1050491e096e0b903cf26b87a63f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: conclusion
on: push

jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - id: first
        run: exit 0
      - id: second
        continue-on-error: true
        run: exit 1
      - run: echo '${{ steps.first.conclusion }}' | grep 'success'
      - run: echo '${{ steps.second.conclusion }}' | grep 'success'