:calls: `POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun `_
(self)
| 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 | """ |