type Github = {
token: string;
};
/**
* Remove a label from an issue
* Removes the specified label from the issue, and returns the remaining labels on the issue. This endpoint returns a `404 Not Found` status if the label does not exist.
*/
export async function main(
auth: Github,
owner: string,
repo: string,
issue_number: string,
name: string
) {
const url = new URL(
`https://api.github.com/repos/${owner}/${repo}/issues/${issue_number}/labels/${name}`
);
const response = await fetch(url, {
method: "DELETE",
headers: {
Authorization: "Bearer " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 367 days ago
type Github = {
token: string;
};
/**
* Remove a label from an issue
* Removes the specified label from the issue, and returns the remaining labels on the issue. This endpoint returns a `404 Not Found` status if the label does not exist.
*/
export async function main(
auth: Github,
owner: string,
repo: string,
issue_number: string,
name: string
) {
const url = new URL(
`https://api.github.com/repos/${owner}/${repo}/issues/${issue_number}/labels/${name}`
);
const response = await fetch(url, {
method: "DELETE",
headers: {
Authorization: "Bearer " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 927 days ago