Skip to content

Commit

Permalink
build: octokit.issues.updateLabel({ current_name, name}) is now `oc…
Browse files Browse the repository at this point in the history
…tokit.issues.updateLabel({ name, new_name})`

BREAKING CHANGE: `octokit.issues.updateLabel({ current_name, name})` is now `octokit.issues.updateLabel({ name, new_name})`
  • Loading branch information
gr2m committed Jan 31, 2020
1 parent f2e6c6e commit 834d570
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/generated/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1865,13 +1865,13 @@ export default {
method: "PATCH",
params: {
color: { type: "string" },
current_name: { required: true, type: "string" },
description: { type: "string" },
name: { type: "string" },
name: { required: true, type: "string" },
new_name: { type: "string" },
owner: { required: true, type: "string" },
repo: { required: true, type: "string" }
},
url: "/repos/:owner/:repo/labels/:current_name"
url: "/repos/:owner/:repo/labels/:name"
},
updateMilestone: {
method: "PATCH",
Expand Down

0 comments on commit 834d570

Please sign in to comment.