Skip to content

Commit

Permalink
ci: Refine GitHub Actions concurrency group names
Browse files Browse the repository at this point in the history
  • Loading branch information
tphakala committed Feb 10, 2025
1 parent 80d2050 commit e111f20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build docker image

# Add concurrency configuration to handle multiple pushes
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: docker-build-${{ github.ref }}
cancel-in-progress: true

on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: golangci-lint

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: golangci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
Expand Down

0 comments on commit e111f20

Please sign in to comment.