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
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:
@@ -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...
|
||||
Reference in New Issue
Block a user