mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Auto cancel stale workflows (#7494)
* chore: rename workflow file Signed-off-by: Sebastian Malton <sebastian@malton.name> * chore: Add concurrency rules for workflows - test - Electronegativity - linter Signed-off-by: Sebastian Malton <sebastian@malton.name> --------- Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
2cf8a2f188
commit
173a667466
3
.github/workflows/electronegativity.yml
vendored
3
.github/workflows/electronegativity.yml
vendored
@ -6,6 +6,9 @@ on:
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
build_job:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
3
.github/workflows/linter.yml
vendored
3
.github/workflows/linter.yml
vendored
@ -1,6 +1,9 @@
|
||||
name: Lint Repo
|
||||
on:
|
||||
- pull_request
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
build:
|
||||
name: Lint
|
||||
|
||||
3
.github/workflows/test.yml
vendored
3
.github/workflows/test.yml
vendored
@ -6,6 +6,9 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
integration-test:
|
||||
name: integration tests on ${{ matrix.os }}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user