Skip to content

Commit

Permalink
Merge pull request #2746 from mraspaud/fix-workflow
Browse files Browse the repository at this point in the history
Fix concurrency group in ci
  • Loading branch information
djhoese committed Feb 20, 2024
2 parents 7c1c92d + 5320bca commit 1a15bbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency
# https://docs.github.com/en/developers/webhooks-and-events/events/github-event-types#pullrequestevent
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.type }}
group: ${{ github.workflow }}-${{ github.event.number || github.event.ref }}-${{ github.event.type }}
cancel-in-progress: true

on: [push, pull_request]
Expand Down

0 comments on commit 1a15bbe

Please sign in to comment.