commit 4e99f095aeeb5eb503a629eca33f8649dfa0dd30 (tree)
parent 27e8d05ee8aa9e26b3fb925f841b228e082b45c2
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Mon, 19 Jan 2026 06:14:21 +0100
ci: avoid github.run_id in concurrency.group
https://codeberg.org/Codeberg/Community/issues/2318
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml
@@ -10,7 +10,7 @@ on:
# This cancels older workflow runs on pull requests while ensuring that there
# are no concurrency limits on pushes and manual workflow dispatches.
concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
permissions: