From 7c2881e3b8fab02e2117c96060ecc556ba020e87 Mon Sep 17 00:00:00 2001 From: Sandenberg Ferreira Melo <77549672+sandenbergmelo@users.noreply.github.com> Date: Fri, 10 Jan 2025 02:29:15 -0300 Subject: [PATCH] Update pipeline to only run for main branch --- .github/workflows/pipeline.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index 31ab337..4521660 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -1,5 +1,12 @@ name: Pipeline -on: [push, pull_request] + +on: + push: + branches: + - main + pull_request: + branches: + - main jobs: run-tests: