Skip to content

Commit 3f075d7

Browse files
committed
update readme
1 parent 2e1ba5a commit 3f075d7

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
11
# skip-duplicate-actions-demo
2+
3+
4+
```yml
5+
jobs:
6+
skip:
7+
runs-on: ubuntu-latest
8+
outputs:
9+
should_skip: ${{ steps.skip_check.outputs.should_skip }}
10+
steps:
11+
- id: skip_check
12+
uses: fkirc/skip-duplicate-actions@v5
13+
with:
14+
cancel_others: 'true'
15+
skip_after_successful_duplicate: 'false'
16+
paths_ignore: '["**.md", ".github/**"]'
17+
```

0 commit comments

Comments
 (0)