Skip to content

Commit

Permalink
Disable concurrent_skipping for skip-duplicate-actions
Browse files Browse the repository at this point in the history
From https://github.com/fkirc/skip-duplicate-actions?tab=readme-ov-file#concurrent_skipping

> Skip a workflow run if the same workflow is already running

but it does not seem reliable, for example, this workflow run
https://github.com/puma/puma/actions/runs/9386209788
looks 100% green but that is because everything was skipped

https://github.com/fkirc/skip-duplicate-actions/issues has many reports
about problems with `concurrent_skipping`

celerity/celerity-runtime#148 is an example of
another project disabling it.

[ci skip]
  • Loading branch information
dentarg committed Jun 5, 2024
1 parent a9be991 commit d661a3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/skip_duplicate_workflow_runs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ jobs:
with:
paths_ignore: '["**.md"]'
paths: ${{ inputs.paths }}
concurrent_skipping: 'same_content_newer' # skip newer runs with same content
concurrent_skipping: 'never' # this feature has bugs
skip_after_successful_duplicate: 'true'

0 comments on commit d661a3a

Please sign in to comment.