Skip to content

Commit fcf187e

Browse files
authored
Document do_not_skip (#77)
1 parent 79840b1 commit fcf187e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

Diff for: .github/workflows/test.yml

+2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ jobs:
1616
- id: skip_check
1717
uses: fkirc/skip-duplicate-actions@master
1818
with:
19+
# All of these options are optional, so you can remove them if you are happy with the defaults
1920
concurrent_skipping: 'never'
2021
skip_after_successful_duplicate: 'true'
2122
paths_ignore: '["**/README.md", "**/docs/**"]'
23+
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]'
2224

2325
main_job:
2426
needs: pre_job

Diff for: README.md

+2
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,11 @@ jobs:
128128
- id: skip_check
129129
uses: fkirc/skip-duplicate-actions@master
130130
with:
131+
# All of these options are optional, so you can remove them if you are happy with the defaults
131132
concurrent_skipping: 'never'
132133
skip_after_successful_duplicate: 'true'
133134
paths_ignore: '["**/README.md", "**/docs/**"]'
135+
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]'
134136

135137
main_job:
136138
needs: pre_job

0 commit comments

Comments
 (0)