From dc343776d73bb140d1f7d5d769653fdae881ba9e Mon Sep 17 00:00:00 2001 From: Jose Borreguero Date: Mon, 26 Aug 2024 17:29:14 -0400 Subject: [PATCH] Remove branches from GitHub Actions workflow The GitHub Actions workflow is now triggered only for the 'next' branch, and no longer runs for 'qa' and 'main' branches. This change simplifies the workflow's trigger conditions, focusing testing efforts on 'next'. Signed-off-by: Jose Borreguero --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 80d807b..d72a8cd 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: pull_request: push: - branches: [next, qa, main] + branches: [next] tags: ['v*'] jobs: