Reports workflows that are likely to benefit from a concurrency group.
Without concurrency, repeated pushes to the same branch can leave obsolete runs consuming runner minutes. This is especially noisy for pull requests and active feature branches.
Add a workflow-level concurrency group when cancellation is safe:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: trueUse caution for deployment workflows where canceling an in-progress run may be unsafe.
info
cost