Skip to content

Commit

Permalink
Avoid github.job
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Oct 31, 2024
1 parent f782bde commit 436ec14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cleanup-caches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defaults:
jobs:
prs:
concurrency:
group: '${{ github.workflow }}-${{ github.job }}'
group: '${{ github.workflow }}-prs' # Dont' use ${{ github.job }} here
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
Expand All @@ -36,7 +36,7 @@ jobs:
GH_TOKEN: ${{ github.token }}
main:
concurrency:
group: '${{ github.workflow }}-${{ github.job }}'
group: '${{ github.workflow }}-main' # Dont' use ${{ github.job }} here
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 436ec14

Please sign in to comment.