From 754d6c6d7b01a6a88151d2c7d7e871fb526a11a7 Mon Sep 17 00:00:00 2001 From: Marco Pedone Date: Mon, 4 Aug 2025 19:18:15 +0200 Subject: [PATCH] Refactor CI workflow triggers to specify paths for push and pull request events --- .github/workflows/ci.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b8a5ac..1428a51 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,15 @@ name: CI -on: [push, pull_request] + +on: + push: + paths: + - ".github/workflows/ci.yml" + - "apps/infoalloggi/**" + pull_request: + paths: + - ".github/workflows/ci.yml" + - "apps/infoalloggi/**" env: INTERNAL_BASE_URL: "http://web:3000"