diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fb9f5fe..a2954d8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,9 +16,11 @@ jobs: - id: skip_check uses: fkirc/skip-duplicate-actions@master with: + # All of these options are optional, so you can remove them if you are happy with the defaults concurrent_skipping: 'never' skip_after_successful_duplicate: 'true' paths_ignore: '["**/README.md", "**/docs/**"]' + do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' main_job: needs: pre_job diff --git a/README.md b/README.md index 1ecca0b..c29cc02 100644 --- a/README.md +++ b/README.md @@ -128,9 +128,11 @@ jobs: - id: skip_check uses: fkirc/skip-duplicate-actions@master with: + # All of these options are optional, so you can remove them if you are happy with the defaults concurrent_skipping: 'never' skip_after_successful_duplicate: 'true' paths_ignore: '["**/README.md", "**/docs/**"]' + do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' main_job: needs: pre_job