From 815953cb17882201a756eecb96236ef6a9b6708e Mon Sep 17 00:00:00 2001 From: BrickheadJohnny Date: Wed, 24 Jul 2024 09:57:51 +0200 Subject: [PATCH] fix(gh action): concurrency --- .github/workflows/playwright.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 24100437ca..d4c315e440 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -1,6 +1,11 @@ name: Playwright Tests on: deployment_status: + workflow_dispatch: + +concurrency: + group: "playwright" + jobs: test: if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success'