Skip to content

Commit c810b2e

Browse files
committed
Update change detection logic in GitHub Actions workflow to include the correct path for shared resources
1 parent f1b1c33 commit c810b2e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/pr-deploy-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
git fetch origin "${{ github.event.pull_request.base.ref }}"
3232
33-
if git diff --name-only "origin/${{ github.event.pull_request.base.ref }}" "${{ github.sha }}" | grep -Eq '^(lambdas/recordprocessor/|shared/src/common/)'; then
33+
if git diff --name-only "origin/${{ github.event.pull_request.base.ref }}" "${{ github.sha }}" | grep -Eq '^(lambdas/recordprocessor/|lambdas/shared/src/common/)'; then
3434
echo "has_changes=true" >> "$GITHUB_OUTPUT"
3535
else
3636
echo "has_changes=false" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)