Skip to content

Commit

Permalink
fix test and formatting action concurrency groups
Browse files Browse the repository at this point in the history
  • Loading branch information
TechLord22 committed Dec 29, 2023
1 parent 3ff51be commit 3d3d97d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/format_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
paths: ['src/main/java/**', 'src/test/**']

concurrency:
group: checks-${{ github.head_ref || github.ref }}
group: formatting-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
'gradlew**', 'src/main/resources/*_at.cfg']

concurrency:
group: checks-${{ github.head_ref || github.ref }}
group: tests-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
Expand Down

0 comments on commit 3d3d97d

Please sign in to comment.