:calls: `GET /repos/{owner}/{repo}/actions/runs/{run_id} `_ :param id_: int :rtype: :class:`github.WorkflowRun.WorkflowRun`
(self, id_: int)
| 3803 | ) |
| 3804 | |
| 3805 | def get_workflow_run(self, id_: int) -> WorkflowRun: |
| 3806 | """ |
| 3807 | :calls: `GET /repos/{owner}/{repo}/actions/runs/{run_id} <https://docs.github.com/en/rest/reference/actions#workflow-runs>`_ |
| 3808 | :param id_: int |
| 3809 | :rtype: :class:`github.WorkflowRun.WorkflowRun` |
| 3810 | """ |
| 3811 | assert isinstance(id_, int) |
| 3812 | url = f"{self.url}/actions/runs/{id_}" |
| 3813 | return github.WorkflowRun.WorkflowRun(self._requester, url=url) |
| 3814 | |
| 3815 | def has_in_assignees(self, assignee: str | NamedUser) -> bool: |
| 3816 | """ |
no outgoing calls