From 7a3ac7e7e0bb42cdc7b8808c8403c7af85f2371b Mon Sep 17 00:00:00 2001 From: hectorAguero Date: Wed, 8 May 2024 19:29:41 -0400 Subject: [PATCH] chore: Update GitHub workflows to only run on main branch for push and pull request events --- .github/workflows/test.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7ddc1ba..416573a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,5 +1,11 @@ name: Run Tests -on: [push, workflow_dispatch] +on: + push: + branches: [main] + pull_request: + branches: [main] + workflow_dispatch: + jobs: drive: runs-on: ubuntu-latest