mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Don't hardcode the page value
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
parent
2475f4fd14
commit
618d26013e
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ def download_artifact(
|
|||
page += 1
|
||||
params = {
|
||||
"per_page": 100,
|
||||
"page": 1,
|
||||
"page": page,
|
||||
}
|
||||
ret = web.get(
|
||||
f"https://api.github.com/repos/{repository}/actions/runs/{run_id}/artifacts",
|
||||
|
|
Loading…
Add table
Reference in a new issue