Skip to content

Commit 8dad71c

Browse files
authored
fix(infra): escape quotes in PR titles (#1607)
1 parent 0b8318c commit 8dad71c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ jobs:
7373
- name: Skip check for automated updates
7474
run: |
7575
# Skip validation for automated package download updates
76-
if [[ "${{ github.actor }}" == "github-actions[bot]" && "${{ github.event.pull_request.title }}" == *"update package download counts"* ]]; then
76+
PR_TITLE='${{ github.event.pull_request.title }}'
77+
if [[ "${{ github.actor }}" == "github-actions[bot]" && "$PR_TITLE" == *"update package download counts"* ]]; then
7778
echo "✅ Skipping check for automated package download update"
7879
exit 0
7980
fi

0 commit comments

Comments
 (0)