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.
2 parents adf84fd + 135d6e5 commit fc96dbdCopy full SHA for fc96dbd
.github/workflows/update-changelog.yml
@@ -87,7 +87,8 @@ jobs:
87
if [ ! -z "${{ steps.pr-info.outputs.body }}" ]; then
88
echo "Processing PR body for additional details"
89
while IFS= read -r line; do
90
- if [[ "$line" =~ ^-[[:space:]].*$ ]]; then
+ # Skip PR template checkboxes and empty lines
91
+ if [[ "$line" =~ ^-[[:space:]][^[\]]*$ && ! "$line" =~ "[ ]" ]]; then
92
NEW_ENTRY+="$line\n"
93
fi
94
done <<< "${{ steps.pr-info.outputs.body }}"
0 commit comments