Skip to content

Commit

Permalink
Merge pull request #101 from KIT-MRT/prevent_concurrent_workflow_runs
Browse files Browse the repository at this point in the history
Only allow one release workflow at a time
  • Loading branch information
ll-nick authored Dec 9, 2024
2 parents b743206 + 658e4cf commit e62afbc
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
branches:
- main

concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false

jobs:
compute-version:
if: github.event.pull_request.merged == true
Expand Down

0 comments on commit e62afbc

Please sign in to comment.