mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
chore: fix gh actions concurrency
This commit is contained in:
parent
b6193636dd
commit
adf3bf38a8
3 changed files with 3 additions and 3 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -1,7 +1,7 @@
|
||||||
name: Build
|
name: Build
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: build
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
on: pull_request
|
on: pull_request
|
||||||
|
|
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
|
@ -1,7 +1,7 @@
|
||||||
name: Lint
|
name: Lint
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: lint
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
on: pull_request
|
on: pull_request
|
||||||
|
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -1,7 +1,7 @@
|
||||||
name: Release
|
name: Release
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: release
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
|
Loading…
Add table
Reference in a new issue