9421d13fa8
Reproduction of "jobs.<jobid>.if" bug / failing (push) Failing after 5s
Reproduction of "jobs.<jobid>.if" bug / report (push) Has been skipped
Deployment / test (push) Successful in 3m7s
Deployment / lol (push) Successful in 5s
Deployment / deploy (push) Successful in 3s
17 lines
351 B
YAML
17 lines
351 B
YAML
name: Reproduction of "jobs.<jobid>.if" bug
|
|
on: push
|
|
|
|
jobs:
|
|
failing:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Let the job fail
|
|
run: exit 1
|
|
|
|
report:
|
|
runs-on: ubuntu-latest
|
|
needs: failing
|
|
if: ${{ failure() }}
|
|
steps:
|
|
- name: Execute
|
|
run: echo This should run... |