Skip to content

Commit

Permalink
feat: restrict workflow concurrency per branch
Browse files Browse the repository at this point in the history
Protects the cache from competing workflow runs on a per branch basis.
  • Loading branch information
innovaker committed May 20, 2021
1 parent 443d29c commit 3eb2e52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ on:
pull_request:
workflow_dispatch:

concurrency: ${{ github.workflow }}
concurrency: ${{ github.ref }}/${{ github.workflow }}

jobs:
architectures:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 3eb2e52

Please sign in to comment.