:calls: `DELETE /repos/{owner}/{repo}/actions/runs/{run_id} `_
(self)
| 353 | return TimingData(billable=data["billable"], run_duration_ms=data.get("run_duration_ms")) |
| 354 | |
| 355 | def delete(self) -> bool: |
| 356 | """ |
| 357 | :calls: `DELETE /repos/{owner}/{repo}/actions/runs/{run_id} <https://docs.github.com/en/rest/reference/actions#workflow-runs>`_ |
| 358 | """ |
| 359 | status, _, _ = self._requester.requestJson("DELETE", self.url) |
| 360 | return status == 204 |
| 361 | |
| 362 | def jobs(self, _filter: Opt[str] = NotSet) -> PaginatedList[WorkflowJob]: |
| 363 | """ |
nothing calls this directly
no test coverage detected