File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ concurrency:
99 cancel-in-progress : true
1010
1111jobs :
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
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"
You can’t perform that action at this time.
0 commit comments