Unverified Commit 05ec950c authored by Yih-Dar's avatar Yih-Dar Committed by GitHub
Browse files

Update `workflow_id` in `utils/get_previous_daily_ci.py` (#30695)



fix
Co-authored-by: default avatarydshieh <ydshieh@users.noreply.github.com>
parent 4208c428
...@@ -14,8 +14,11 @@ def get_daily_ci_runs(token, num_runs=7): ...@@ -14,8 +14,11 @@ def get_daily_ci_runs(token, num_runs=7):
if token is not None: if token is not None:
headers = {"Accept": "application/vnd.github+json", "Authorization": f"Bearer {token}"} headers = {"Accept": "application/vnd.github+json", "Authorization": f"Bearer {token}"}
# The id of a workflow (not of a workflow run) # The id of a workflow (not of a workflow run).
workflow_id = "636036" # From a given workflow run (where we have workflow run id), we can get the workflow id by going to
# https://api.github.com/repos/huggingface/transformers/actions/runs/{workflow_run_id}
# and check the `workflow_id` key.
workflow_id = "90575235"
url = f"https://api.github.com/repos/huggingface/transformers/actions/workflows/{workflow_id}/runs" url = f"https://api.github.com/repos/huggingface/transformers/actions/workflows/{workflow_id}/runs"
# On `main` branch + event being `schedule` + not returning PRs + only `num_runs` results # On `main` branch + event being `schedule` + not returning PRs + only `num_runs` results
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment