(self)
| 191 | return self._workflow_name.value |
| 192 | |
| 193 | def logs_url(self) -> str: |
| 194 | headers, _ = self._requester.requestBlobAndCheck("GET", f"{self.url}/logs") |
| 195 | return headers["location"] |
| 196 | |
| 197 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 198 | if "check_run_url" in attributes: # pragma no branch |
nothing calls this directly
no test coverage detected