Skip to content

Commit 5d7d942

Browse files
fix: adding double quotes so the variables are readable.
1 parent 968d45d commit 5d7d942

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/auto-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
year=${BASH_REMATCH[1]}
2020
day=${BASH_REMATCH[2]}
2121
22-
issue_number=$(gh issue list -S '[$year] [Day $day] in:title' --json number | jq '.[].number')
23-
echo $issue_number
22+
issue_number=$(gh issue list -S "[$year] [Day $day] in:title" --json number | jq '.[].number')
23+
2424
if [ -z "$issue_number" ]; then
2525
echo "::error::Issue not found!"
2626
exit 1

0 commit comments

Comments
 (0)