aboutsummaryrefslogtreecommitdiffstats
path: root/arthur/apis/github/teams.py
blob: a8775a32c3d5725eed299c477d59b7a8398d5731 (plain) (blame)
1
2
3
4
5
6
7
from arthur.config import CONFIG

HEADERS = {
    "Accept": "application/vnd.github+json",
    "X-GitHub-Api-Version": "2022-11-28",
    "Authorization": f"Bearer {CONFIG.github_token.get_secret_value()}",
}