Skip to content

Commit 5ee0882

Browse files
authored
Update links to documentation about tags (#184)
[skip ci]
1 parent 6d4ced5 commit 5ee0882

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Here's a table that matches up the provided `GitHubType`s with their correspondi
5656
| `Review` | id, e.g. `1` | [reviews](https://developer.github.com/v3/pulls/reviews/) |
5757
| `Blob` | sha, e.g. `"95c8d1aa2a7b1e6d672e15b67e0df4abbe57dcbe"` | [raw git blobs](https://developer.github.com/v3/git/blobs/) |
5858
| `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) |
6060
| `References` | reference name, e.g. `heads/master` (note: omits leading `refs/`) | [references](https://developer.github.com/v3/git/refs/) |
6161
| `Secrets` | secret name, e.g. `TAGBOT_SECRET` | [secrets](https://developer.github.com/v3/actions/secrets/) |
6262
| `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.
211211
| `create_gitcommit(repo)` | `GitCommit` | [Create a commit in the `repo`](https://developer.github.com/v3/git/commits/#create-a-commit) |
212212
| `tree(repo, sha)` | `Tree` | [Look up a tree in the `repo` by its SHA](https://developer.github.com/v3/git/trees/#get-a-tree) |
213213
| `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) |
216216
| `reference(repo, name)` | `Reference` | [Look up a ref in the `repo` by its name](https://developer.github.com/v3/git/refs/#get-a-reference) |
217217
| `references(repo)` | `Vector{Reference}` | [Get all `refs ` of the repo](https://developer.github.com/v3/git/refs/#get-all-references) |
218218
| `create_reference(repo)` | `Reference` | [Create a reference in the `repo`](https://developer.github.com/v3/git/refs/#create-a-reference) |

0 commit comments

Comments
 (0)