Files
actions-environment/.gitea/workflows/bug.yml
T
tom.coursow 923ee61e1d
Deployment / test (push) Successful in 2m35s
Deployment / lol (push) Successful in 6s
Deployment / deploy (push) Successful in 4s
Update .gitea/workflows/bug.yml
2023-07-17 02:34:53 +02:00

17 lines
364 B
YAML

name: Reproduction of "jobs.<jobid>.if" bug
on: workflow_dispatch
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...