@@ -56,7 +56,7 @@ Here's a table that matches up the provided `GitHubType`s with their correspondi
56
56
| ` Review ` | id, e.g. ` 1 ` | [ reviews] ( https://developer.github.com/v3/pulls/reviews/ ) |
57
57
| ` Blob ` | sha, e.g. ` "95c8d1aa2a7b1e6d672e15b67e0df4abbe57dcbe" ` | [ raw git blobs] ( https://developer.github.com/v3/git/blobs/ ) |
58
58
| ` Tree ` | sha, e.g. ` "78e524d5e979e326a7c144ce195bf94ca9b04fa0" ` | [ raw git trees] ( https://developer.github.com/v3/git/trees/ ) |
59
- | ` Tag ` | tag name, e.g. ` v1.0 ` | [ git tags] ( https://developer .github.com/v3/git/tags/ ) |
59
+ | ` Tag ` | tag name, e.g. ` v1.0 ` | [ git tags] ( https://docs .github.com/en/rest/reference/git#tags ) |
60
60
| ` References ` | reference name, e.g. ` heads/master ` (note: omits leading ` refs/ ` ) | [ references] ( https://developer.github.com/v3/git/refs/ ) |
61
61
| ` Secrets ` | secret name, e.g. ` TAGBOT_SECRET ` | [ secrets] ( https://developer.github.com/v3/actions/secrets/ ) |
62
62
| ` DeployKeys ` | id, e.g., 12345 | [ deploy keys] ( https://docs.github.com/en/free-pro-team@latest/rest/reference/repos#deploy-keys ) |
@@ -211,8 +211,8 @@ GitHub.jl implements a bunch of methods that make REST requests to GitHub's API.
211
211
| ` create_gitcommit(repo) ` | ` GitCommit ` | [ Create a commit in the ` repo ` ] ( https://developer.github.com/v3/git/commits/#create-a-commit ) |
212
212
| ` tree(repo, sha) ` | ` Tree ` | [ Look up a tree in the ` repo ` by its SHA] ( https://developer.github.com/v3/git/trees/#get-a-tree ) |
213
213
| ` create_tree(repo) ` | ` Tree ` | [ Create a tree in the ` repo ` ] ( https://developer.github.com/v3/git/trees/create-a-tree ) |
214
- | ` tag(repo, sha) ` | ` Tag ` | [ Look up a tag in the ` repo ` by its name] ( https://developer .github.com/v3/git/tag/ #get-a-tag ) |
215
- | ` create_tag(repo) ` | ` Tag ` | [ Create a tag in the ` repo ` ] ( https://developer .github.com/v3/git/tag/ #create-a-tag ) |
214
+ | ` tag(repo, sha) ` | ` Tag ` | [ Look up a tag in the ` repo ` by its name] ( https://docs .github.com/en/rest/reference/git #get-a-tag ) |
215
+ | ` create_tag(repo) ` | ` Tag ` | [ Create a tag in the ` repo ` ] ( https://docs .github.com/en/rest/reference/git #create-a-tag-object ) |
216
216
| ` reference(repo, name) ` | ` Reference ` | [ Look up a ref in the ` repo ` by its name] ( https://developer.github.com/v3/git/refs/#get-a-reference ) |
217
217
| ` references(repo) ` | ` Vector{Reference} ` | [ Get all ` refs ` of the repo] ( https://developer.github.com/v3/git/refs/#get-all-references ) |
218
218
| ` create_reference(repo) ` | ` Reference ` | [ Create a reference in the ` repo ` ] ( https://developer.github.com/v3/git/refs/#create-a-reference ) |
0 commit comments