Ian Vaughan
Ian Vaughan

Reputation: 21321

How to disable GitHub Actions Concurrency

GitHub Actions concurrency broke my process, as we would push commits and want to prove they have all built. But now with Concurrency, GitHub cancels builds on previous commits as soon as a new commit is pushed.

https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency

Is there a away to completely disable it? Or even better, have it configurable per branch?

Upvotes: 2

Views: 2605

Answers (1)

Reinaldo Gil
Reinaldo Gil

Reputation: 628

As documented "Any previously pending in the concurrency group will be canceled". In others words, the queue is limited in one. Somewhat useless. To permit parallel execution just not use 'concurrency' term on action.

Upvotes: 2

Related Questions