Skip to content

Commit

Permalink
Use fallback value
Browse files Browse the repository at this point in the history
  • Loading branch information
onevcat committed Sep 21, 2024
1 parent cce8558 commit 31ba242
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: build

on: [push, pull_request]

concurrency:
group: ${{ github.head_ref }}
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: test

on: [push, pull_request]

concurrency:
group: ${{ github.head_ref }}
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
Expand Down

0 comments on commit 31ba242

Please sign in to comment.