Skip to content

Commit a805105

Browse files
committed
XXX add failing workflow
1 parent 4c8228f commit a805105

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/fail.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Fail
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches:
8+
- "**"
9+
workflow_dispatch:
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
test:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Fail loudly
19+
run: |
20+
>&2 echo WORKFLOW INTENTIONALLY FAILING
21+
exit 1

0 commit comments

Comments
 (0)