Skip to content

Commit 80f5200

Browse files
committed
Fix string formatting further in DocPreviewCleanup.yml
1 parent 76d614b commit 80f5200

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/DocPreviewCleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
4141
function all_prs()
4242
url = "https://api.github.com/repos/$repo/pulls?per_page=100;page="
43-
query_prs(page) = JSON3.read(HTTP.get(url * page).body)
43+
query_prs(page) = JSON3.read(HTTP.get(url * string(page)).body)
4444
prs = []
4545
page = 1
4646
while true

0 commit comments

Comments
 (0)