From 7925d81405b082a658c01103fa690abadd82a642 Mon Sep 17 00:00:00 2001 From: eugene-seb Date: Tue, 19 Aug 2025 00:03:32 +0200 Subject: [PATCH] ci: fix branch policy enforcement logic in PR to master workflow --- .github/workflows/pr_to_master.yml | 10 +++++----- .github/workflows/push_pr_to_dev.yml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pr_to_master.yml b/.github/workflows/pr_to_master.yml index d349109..88bcbfd 100644 --- a/.github/workflows/pr_to_master.yml +++ b/.github/workflows/pr_to_master.yml @@ -48,15 +48,15 @@ jobs: with: filters: | user: - - 'services/user-service/**' + - 'submodules/user-service/**' book: - - 'services/book-service/**' + - 'submodules/book-service/**' review: - - 'services/review-service/**' + - 'submodules/review-service/**' api_gateway: - - 'services/api-gateway/**' + - 'submodules/api-gateway/**' registry_service: - - 'services/registry-service/**' + - 'submodules/registry-service/**' frontend: - 'mflibrary-frontend/**' diff --git a/.github/workflows/push_pr_to_dev.yml b/.github/workflows/push_pr_to_dev.yml index a9dce69..bb1d694 100644 --- a/.github/workflows/push_pr_to_dev.yml +++ b/.github/workflows/push_pr_to_dev.yml @@ -35,15 +35,15 @@ jobs: with: filters: | user: - - 'services/user-service/**' + - 'submodules/user-service/**' book: - - 'services/book-service/**' + - 'submodules/book-service/**' review: - - 'services/review-service/**' + - 'submodules/review-service/**' api_gateway: - - 'services/api-gateway/**' + - 'submodules/api-gateway/**' registry_service: - - 'services/registry-service/**' + - 'submodules/registry-service/**' frontend: - 'mflibrary-frontend/**'