MCPcopy Index your code
hub / github.com/PyGithub/PyGithub / rerun

Method rerun

github/WorkflowRun.py:334–339  ·  view source on GitHub ↗

:calls: `POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun `_

(self)

Source from the content-addressed store, hash-verified

332 return status == 202
333
334 def rerun(self) -> bool:
335 """
336 :calls: `POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun <https://docs.github.com/en/rest/reference/actions#workflow-runs>`_
337 """
338 status, _, _ = self._requester.requestJson("POST", self.rerun_url)
339 return status == 201
340
341 def rerun_failed_jobs(self) -> bool:
342 """

Callers 2

test_rerunMethod · 0.80

Calls 1

requestJsonMethod · 0.80

Tested by 2

test_rerunMethod · 0.64