Skip to content

Commit d661a3a

Browse files
committed
Disable concurrent_skipping for skip-duplicate-actions
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]
1 parent a9be991 commit d661a3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/skip_duplicate_workflow_runs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ jobs:
2828
with:
2929
paths_ignore: '["**.md"]'
3030
paths: ${{ inputs.paths }}
31-
concurrent_skipping: 'same_content_newer' # skip newer runs with same content
31+
concurrent_skipping: 'never' # this feature has bugs
3232
skip_after_successful_duplicate: 'true'

0 commit comments

Comments
 (0)