github_api
GitHubAPI
Interact with the GitHub API and perform various git-flow tasks
Source code in all_all_contributors/github_api.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 |
|
__init__(org_name, target_repo_name, github_token, target_filepath='.all-contributorsrc', base_branch='main', head_branch='merge-all-contributors')
Parameters:
Name | Type | Description | Default |
---|---|---|---|
org_name
|
str
|
The name of the GitHub organisation to target |
required |
target_repo_name
|
str
|
The name of the repo within |
required |
github_token
|
str
|
A GitHub token to authenticate API calls |
required |
target_filepath
|
str
|
The filepath within |
'.all-contributorsrc'
|
base_branch
|
str
|
The name of the default branch in
|
'main'
|
head_branch
|
str
|
A prefix for branches created in
|
'merge-all-contributors'
|
Source code in all_all_contributors/github_api.py
create_commit(contents, commit_msg='Merging all contributors info from across the org')
Create a commit over the GitHub API by creating or updating a file
Parameters:
Name | Type | Description | Default |
---|---|---|---|
contents
|
str
|
The content of the file to be updated, encoded in base64 |
required |
commit_msg
|
str
|
A message describing the changes the commit applies. (default: "Merging all contributors info from across the org") |
'Merging all contributors info from across the org'
|
Source code in all_all_contributors/github_api.py
create_ref(ref, sha)
Create a new git reference (specifically, a branch) with GitHub's git database API endpoint
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ref
|
str
|
The reference or branch name to create |
required |
sha
|
str
|
The SHA of the parent commit to point the new reference to |
required |
Source code in all_all_contributors/github_api.py
create_update_pull_request()
Create or update a Pull Request via the GitHub API
Source code in all_all_contributors/github_api.py
find_existing_pull_request()
Check if the bot already has an open Pull Request
Source code in all_all_contributors/github_api.py
get_all_repos(excluded_repos)
Get all repositories from a GitHub organization using the GitHub API
Parameters:
Name | Type | Description | Default |
---|---|---|---|
excluded_repos
|
list
|
A list of excluded repos to skip |
required |
Returns:
Name | Type | Description |
---|---|---|
list |
list
|
A list of remaining repos in the organisation |
Source code in all_all_contributors/github_api.py
get_contributors_from_repo(repo, filepath='.all-contributorsrc')
Get contributors from a specific repository using the GitHub API
Parameters:
Name | Type | Description | Default |
---|---|---|---|
repo
|
str
|
The name of the repository to extract contributors from |
required |
filepath
|
str
|
The filepath to extract contributors from (default: .all-contributorsrc) |
'.all-contributorsrc'
|
Returns:
Name | Type | Description |
---|---|---|
list |
list
|
A list of contributors from the repository |
Source code in all_all_contributors/github_api.py
get_ref(ref)
Get a git reference (specifically, a HEAD ref) using GitHub's git database API endpoint
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ref
|
str
|
The reference for which to return information for |
required |
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
The JSON payload response of the request |
Source code in all_all_contributors/github_api.py
get_target_file_contents(ref)
Download the JSON-formatted contents of a target filepath in a target repository inside a target GitHub org.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ref
|
str
|
The reference (branch) the file is stored on |
required |
Returns:
Name | Type | Description |
---|---|---|
dict |
The JSON formatted contents of the target filepath |
Source code in all_all_contributors/github_api.py
run()
Run git flow to make a branch, commit a file, and open a PR