11 lines
156 B
YAML
11 lines
156 B
YAML
|
name: no first
|
||
|
on: push
|
||
|
|
||
|
jobs:
|
||
|
second:
|
||
|
runs-on: ubuntu-latest
|
||
|
needs: first
|
||
|
steps:
|
||
|
- run: echo How did you get here?
|
||
|
shell: bash
|