feat: Add concurrency checks for lint and PR workflows, p=#12457, c=workflows

This commit is contained in:
mr. m
2026-02-21 21:30:15 +01:00
committed by GitHub
parent 5ed59fb902
commit 52d03f43ef
2 changed files with 8 additions and 0 deletions

View File

@@ -9,6 +9,10 @@ on:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest

View File

@@ -7,6 +7,10 @@ on:
branches:
- dev
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
pr-test:
runs-on: ubuntu-latest