#! /usr/bin/env deno run --allow-net --allow-env import {Issue} from "./githubType.ts"; /** * get issue from github * @param repo repository name with owner (e.g. denoland/deno) * @param token your github token * @returns up to 100 issue objects * @example * ```ts * const issues = await getIssues('denoland/deno', 'your-token') * console.log(issues); * ``` */ export async function getIssues(repo: string, token: string): Promise { //check https://docs.github.com/en/rest/reference/issues#list-repository-issues const res = await fetch(`https://api.github.com/repos/${repo}/issues?per_page=100&labels=feature`, { headers: { Accept: 'application/vnd.github.v3+json', Authorization: `Token ${token}` } }); return await res.json(); } if (import.meta.main) { const arg = Deno.args.length > 0 ? Deno.args[0] : undefined; const token = arg ?? Deno.env.get("GITHUB_TOKEN"); if(!token) { console.error("GITHUB_TOKEN is not set"); Deno.exit(1); } const issues = await getIssues("vi117/scrap-yard", token); issues.sort((a, b) => a.number - b.number); console.log(issues.map(i => `# (${i.number}) ${i.title}\n${i.body}`).join("\n\n")); }