Skip to content

Commit

Permalink
Adding concurrency to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
frasermolyneux committed Nov 9, 2023
1 parent 738a859 commit 835d6e6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/pull-request-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ permissions:
actions: read # Required by CodeQL
security-events: write # Required by CodeQL

concurrency: # This is required to prevent multiple runs of the same workflow from running at the same time.
group: ${{ github.workflow }}

jobs:
dependency-review:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release-to-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ permissions:
actions: read # Required by CodeQL
security-events: write # Required by CodeQL

concurrency: # This is required to prevent multiple runs of the same workflow from running at the same time.
group: ${{ github.workflow }}

jobs:
dotnet-func-ci:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 835d6e6

Please sign in to comment.