Files
actions-environment/.gitea/workflows/bug.yml
T
tom.coursow 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
Add .gitea/workflows/bug.yml
2023-07-15 12:03:33 +02:00

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...