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 6f2f360 commit f187716Copy full SHA for f187716
.github/workflows/pr-test-suite.yml
@@ -45,7 +45,7 @@ jobs:
45
BASE=${{ github.base_ref || 'origin/main' }}
46
git fetch origin $BASE --depth=1
47
48
- diff=$(git diff --quiet origin/$BASE -- \
+ if git diff --quiet origin/$BASE -- \
49
. \
50
':!.vscode/**' \
51
':!ci/**' \
@@ -61,13 +61,8 @@ jobs:
61
':!SECURITY.md' \
62
':!codecov.yml' \
63
':!mkdocs.yml' \
64
- ':!AGENTS.md')
65
- exit_code=$?
66
-
67
- echo "diff: $diff"
68
- echo "exit_code: $exit_code"
69
70
- if [ $exit_code -ne 0 ] || [ -z "$diff" ]; then
+ ':!AGENTS.md'
+ then
71
echo "skip=true" >> $GITHUB_OUTPUT
72
else
73
echo "skip=false" >> $GITHUB_OUTPUT
0 commit comments