Skip to content

Commit

Permalink
Update concurrency behaviour in GitHub workflow
Browse files Browse the repository at this point in the history
Altered the 'cancel-in-progress' status to false in the GitHub workflow configuration. This change means that instead of canceling any in-progress jobs when another job starts in this group, the jobs will now be able to run concurrently.
  • Loading branch information
ygdrasil-io committed Feb 1, 2024
1 parent 71136d4 commit 98f2aca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
cancel-in-progress: false

jobs:
tests:
Expand Down

0 comments on commit 98f2aca

Please sign in to comment.