diff --git a/.github/workflows/pull-request-validation.yml b/.github/workflows/pull-request-validation.yml index 42ea643..026f90b 100644 --- a/.github/workflows/pull-request-validation.yml +++ b/.github/workflows/pull-request-validation.yml @@ -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 diff --git a/.github/workflows/release-to-production.yml b/.github/workflows/release-to-production.yml index 8ee6841..d2fead3 100644 --- a/.github/workflows/release-to-production.yml +++ b/.github/workflows/release-to-production.yml @@ -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