Standard GitHub API headers.
(token: str)
| 444 | |
| 445 | |
| 446 | def _github_headers(token: str) -> Dict: |
| 447 | """Standard GitHub API headers.""" |
| 448 | return { |
| 449 | "Accept": "application/vnd.github+json", |
| 450 | "Authorization": f"Bearer {token}", |
| 451 | } |
| 452 | |
| 453 | |
| 454 | def commit_image_to_branch( |
no outgoing calls
no test coverage detected