We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9439b0 commit e7d8c17Copy full SHA for e7d8c17
.github/workflows/run-ubuntu-checks.yml
@@ -140,8 +140,9 @@ jobs:
140
id: check-changes
141
run: |
142
git fetch origin ${{ github.base_ref }} --depth=1 || true
143
+ git checkout ${{ github.base_ref }}
144
CHANGED_FILES=$(git diff --name-only origin/${{ github.base_ref }}...HEAD)
- echo "$CHANGED_FILES" | grep '^src_c/' || echo "::set-output name=skip::true"
145
+ echo "$CHANGED_FILES" | grep '^src_c/' || echo "skip=true" >> "$GITHUB_OUTPUT"
146
147
- name: Install cppcheck
148
if: steps.check-changes.outputs.skip != 'true'
0 commit comments