From bc854900c9edee021bf825d49f5f05c674ffaeb5 Mon Sep 17 00:00:00 2001 From: turnoffthiscomputer Date: Wed, 28 Aug 2024 17:04:54 +0200 Subject: [PATCH] CI/CD pipeline only for push in circuits/common repo --- .github/workflows/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 0a38f4da5..4c51612ab 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -4,10 +4,16 @@ on: branches: - dev - main + paths: + - 'circuits/**' + - 'common/**' pull_request: branches: - dev - main + paths: + - 'circuits/**' + - 'common/**' jobs: run_circuit_tests: runs-on: ubuntu-latest