We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f23cdb commit 3084abfCopy full SHA for 3084abf
1 file changed
.github/workflows/deploy-merged-pr.yml
@@ -36,10 +36,10 @@ jobs:
36
37
NON_WORKFLOW_CHANGES=$(echo "$CHANGED_FILES" | jq --argjson exclude "$EXCLUDE_FILTER" '[.[] | select(. as $f | $exclude | any(. as $p | $f | startswith($p)) | not)] | length')
38
if [ "$NON_WORKFLOW_CHANGES" -gt 0 ]; then
39
- echo "PR contains changes outside filter paths — proceeding."
+ echo "PR contains changes outside filtered paths — proceeding."
40
echo "should_sync=true" >> $GITHUB_OUTPUT
41
else
42
- echo "All changes are under filter paths — skipping workflow."
+ echo "All changes are under filtered paths — skipping workflow."
43
echo "should_sync=false" >> $GITHUB_OUTPUT
44
fi
45
0 commit comments