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.
1 parent 8c3df47 commit 2ef0f52Copy full SHA for 2ef0f52
.github/workflows/deploy.yml
@@ -94,9 +94,14 @@ jobs:
94
id: extract
95
run: |
96
REPO="https://github.com/${{ github.repository }}"
97
-
98
- # Match '## ' lines with optional leading spaces
99
- grep '^[[:space:]]*## ' pr_body.md | sed 's/^[[:space:]]*## //' > packages.txt
+
+ echo "🔍 PR body content:" && cat pr_body.md
100
+ # Use grep with flexible spacing
101
+ grep -E '^\s*##\s+@' pr_body.md | sed -E 's/^\s*##\s+//' > packages.txt
102
103
+ echo "🔍 Extracted packages:"
104
+ cat packages.txt
105
106
if [ -s packages.txt ]; then
107
while read -r line; do
0 commit comments