blob: 3b4adf48d01d0ff9e25d1cd8454b1f7adc77c7ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
name: missing
on: push
jobs:
second:
runs-on: ubuntu-latest
needs: first
steps:
- run: echo How did you get here?
shell: bash
standalone:
runs-on: ubuntu-latest
steps:
- run: echo Hello world
shell: bash
|