From 2720791434d949cf4eab5415f7ce3277907f00ec Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Thu, 29 Aug 2024 09:24:37 +0100 Subject: [PATCH] Updated CI workflow to run on PR label/unlabel - We have browser tests which only run if the browser tests flag is added to the PR - The label has to be present on PR creation, which is hard to remember/doesn't fit with various workflows - The default type of action for the pull_request trigger are opened, synchronize, reopened - This PR adds labeled and unlabeled to those, which I think will help us to run the tests as expected - The expectation is that adding the browser test label will now trigger the tests to run --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5c1ef91bf..e09d3b804c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,7 @@ name: CI on: pull_request: + types: [opened, synchronize, reopened, labeled, unlabeled] push: branches: - main