Add .gitea/workflows/bug.yml
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

This commit is contained in:
2023-07-15 12:03:33 +02:00
parent 38dbe0ff74
commit 9421d13fa8
+17
View File
@@ -0,0 +1,17 @@
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...