chore: prevent two concurrent running release workflows (#17465)

pull/17485/head
Conduitry 3 months ago committed by GitHub
parent a903e9408b
commit b934372a3c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -5,6 +5,11 @@ on:
branches:
- main
concurrency:
# prevent two release workflows from running at once
# race conditions here can result in releases failing
group: ${{ github.workflow }}
permissions: {}
jobs:
release:

Loading…
Cancel
Save