Skip to content

Commit a3f54db

Browse files
authored
fix: Skip changelog label not properly skipping in static-code-checks (#86)
1 parent 5770424 commit a3f54db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/BuildAndTest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
fi
4040
4141
# Check for skip changelog label
42-
if echo '${{ toJSON(github.event.pull_request.labels.*.name) }}' | jq -r '.[]' | grep -q "skip changelog"; then
42+
if echo '${{ toJSON(github.event.pull_request.labels.*.name) }}' | jq -r '.[]' | grep -iq "skip changelog"; then
4343
echo "Skipping check: skip changelog label found"
4444
exit 0
4545
fi

0 commit comments

Comments
 (0)