Skip to content

Commit b19631b

Browse files
committed
👷 eas: add concurrency to cancel outdated workflow runs
1 parent 1784aea commit b19631b

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

‎.eas/workflows/local.yaml‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: e2e:local
22
on: { push: { branches: ["main"] }, pull_request: {}, workflow_dispatch: {} }
33
defaults: { tools: { node: "24.13.0", pnpm: "10.28.1" } }
4+
concurrency: { cancel_in_progress: true, group: "${{ workflow.filename }}-${{ github.ref }}" }
45
jobs:
56
fingerprint:
67
type: fingerprint

‎.eas/workflows/production.yaml‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: e2e:production
22
on: { workflow_dispatch: {} }
33
defaults: { tools: { node: "24.13.0", pnpm: "10.28.1" } }
4+
concurrency: { cancel_in_progress: true, group: "${{ workflow.filename }}-${{ github.ref }}" }
45
jobs:
56
fingerprint:
67
type: fingerprint

0 commit comments

Comments
 (0)