blob: 34289d892851a3235ab39b62745523243b898c3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
name: uses-docker-url
on: push
jobs:
failing-composite-action:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./uses-composite-with-error/composite_action2
- run: echo should run
if: failure()
- run: echo should not run
|