Skip to content

Create testing-download-job-logs.yml #21

Create testing-download-job-logs.yml

Create testing-download-job-logs.yml #21

Workflow file for this run

name: Failing Job
on: [workflow_dispatch, pull_request, push]
jobs:
job-one:
runs-on: ubuntu-latest
steps:
- run: echo "first" && exit 1
job-two:
runs-on: ubuntu-latest
needs: job-one
steps:
- run: echo "second"
retry-three:
runs-on: ubuntu-latest
needs: job-two
steps:
- run: echo "third"