Skip to content

Commit 76d614b

Browse files
committed
Fix string formatting in DocPreviewCleanup.yml
1 parent 860c0c2 commit 76d614b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/DocPreviewCleanup.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939
end
4040
4141
function all_prs()
42-
url = "https://api.github.com/repos/$repo/pulls?per_page=100;page=$(page)"
43-
query_prs(page) = JSON3.read(HTTP.get(url).body)
42+
url = "https://api.github.com/repos/$repo/pulls?per_page=100;page="
43+
query_prs(page) = JSON3.read(HTTP.get(url * page).body)
4444
prs = []
4545
page = 1
4646
while true

0 commit comments

Comments
 (0)