(self)
| 316 | return self._workflow_url.value |
| 317 | |
| 318 | def get_artifacts(self) -> PaginatedList[Artifact]: |
| 319 | return PaginatedList( |
| 320 | github.Artifact.Artifact, |
| 321 | self._requester, |
| 322 | self.artifacts_url, |
| 323 | None, |
| 324 | list_item="artifacts", |
| 325 | ) |
| 326 | |
| 327 | def cancel(self) -> bool: |
| 328 | """ |
nothing calls this directly
no test coverage detected