Skip to content

Commit b045e15

Browse files
committed
deploy step testing
1 parent 479fa22 commit b045e15

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ concurrency:
99
cancel-in-progress: true
1010

1111
jobs:
12-
run-quality-checks:
13-
uses: ./.github/workflows/quality-checks.yml
14-
secrets:
15-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
12+
# run-quality-checks:
13+
# uses: ./.github/workflows/quality-checks.yml
14+
# secrets:
15+
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
1616

1717
detect-recordprocessor-changes:
1818
runs-on: ubuntu-latest
@@ -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/|lambdas/shared/src/common/)'; then
33+
if git diff --name-only "origin/${{ github.event.pull_request.base.ref }}" "${{ github.sha }}" | grep -q '^lambdas/recordprocessor/'; then
3434
echo "has_changes=true" >> "$GITHUB_OUTPUT"
3535
else
3636
echo "has_changes=false" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)