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.
diff_check
1 parent 55eb88d commit 18f04f7Copy full SHA for 18f04f7
.github/workflows/skip-ci.yml
@@ -28,7 +28,7 @@ jobs:
28
29
skipList=(".github/CODEOWNERS" ".prettierignore")
30
# Ignores changelog.md, readme.md,...
31
- fileChangesArray=($(git diff --name-only origin/${{ github.base_ref }}..origin/${{ github.head_ref }} | grep -v '\.md$'))
+ fileChangesArray=($(git diff --name-only origin/${{ github.base_ref }}..origin/${{ github.head_ref }} | grep -v '\.md$' || true))
32
printf '%s\n' "${fileChangesArray[@]}"
33
for item in "${fileChangesArray[@]}"
34
do
0 commit comments