1
0
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:
Sebastian Malton 2023-04-04 07:33:18 -04:00 committed by GitHub
parent 2cf8a2f188
commit 173a667466
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 0 deletions

View File

@ -6,6 +6,9 @@ on:
pull_request: pull_request:
branches: branches:
- master - master
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs: jobs:
build_job: build_job:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@ -1,6 +1,9 @@
name: Lint Repo name: Lint Repo
on: on:
- pull_request - pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs: jobs:
build: build:
name: Lint name: Lint

View File

@ -6,6 +6,9 @@ on:
push: push:
branches: branches:
- master - master
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs: jobs:
integration-test: integration-test:
name: integration tests on ${{ matrix.os }} name: integration tests on ${{ matrix.os }}