import * as wmill from "https://deno.land/x/windmill@v1.85.0/mod.ts";
import { Octokit } from "https://cdn.skypack.dev/@octokit/rest";
/*
@param: {wmill.Resource<"github">} gh_auth - Resource containing Github Auth API Key
example:
{
auth: github_api_key
}
@param: {string} owner - Github username of repo owner
@param: {string} repo - Github repo name
*/
export async function main(
gh_auth: wmill.Resource<"github">,
owner: string,
repo: string,
) {
const octokit = new Octokit({ auth: gh_auth.token });
const response = await octokit.rest.repos.get({
owner: owner,
repo: repo,
});
return response;
}
Submitted by adam186 595 days ago
import * as wmill from "https://deno.land/x/windmill@v1.85.0/mod.ts";
import { Octokit } from "https://cdn.skypack.dev/octokit?dts";
/*
@param: {wmill.Resource<"github">} gh_auth - Resource containing Github Auth API Key
example:
{
auth: github_api_key
}
@param: {string} owner - Github username of repo owner
@param: {string} repo - Github repo name
*/
export async function main(
gh_auth: wmill.Resource<"github">,
owner: string,
repo: string,
) {
const octokit = new Octokit({ auth: gh_auth.token });
const response = await octokit.rest.repos.get({
owner: owner,
repo: repo,
});
return response;
}
Submitted by adam186 595 days ago
import * as wmill from "https://deno.land/x/windmill@v1.85.0/mod.ts";
import { Octokit } from "https://cdn.skypack.dev/octokit?dts";
/*
@param: {wmill.Resource<"github">} gh_auth - Resource containing Github Auth API Key
example:
{
auth: github_api_key
}
@param: {string} owner - Github username of repo owner
@param: {string} repo - Github repo name
*/
export async function main(
gh_auth: wmill.Resource<"github">,
owner: string,
repo: string,
) {
const octokit = new Octokit(gh_auth);
const response = await octokit.rest.repos.get({
owner: owner,
repo: repo,
});
return response;
}
Submitted by adam186 595 days ago
import * as wmill from "https://deno.land/x/windmill@v1.85.0/index.ts";
import { Octokit } from "https://cdn.skypack.dev/octokit?dts";
/*
@param: {wmill.Resource<"github">} gh_auth - Resource containing Github Auth API Key
example:
{
auth: github_api_key
}
@param: {string} owner - Github username of repo owner
@param: {string} repo - Github repo name
*/
export async function main(
gh_auth: wmill.Resource<"github">,
owner: string,
repo: string,
) {
const octokit = new Octokit(gh_auth);
const response = await octokit.rest.repos.get({
owner: owner,
repo: repo,
});
return response;
}
Submitted by adam186 597 days ago
import * as wmill from "https://deno.land/x/windmill@v1.12.0/index.ts";
import { Octokit } from "https://cdn.skypack.dev/octokit?dts";
/*
@param: {wmill.Resource<"github">} gh_auth - Resource containing Github Auth API Key
example:
{
auth: github_api_key
}
@param: {string} owner - Github username of repo owner
@param: {string} repo - Github repo name
*/
export async function main(
gh_auth: wmill.Resource<"github">,
owner: string,
repo: string,
) {
const octokit = new Octokit(gh_auth);
const response = await octokit.rest.repos.get({
owner: owner,
repo: repo,
});
return response;
}
Submitted by adam186 632 days ago
import * as wmill from "https://deno.land/x/windmill@v1.12.0/index.ts";
import { Octokit } from "https://cdn.skypack.dev/octokit?dts";
/*
@param: {wmill.Resource<"github">} gh_auth - Resource containing Github Auth API Key
example:
{
auth: github_api_key
}
@param: {string} owner - Github username of repo owner
@param: {string} repo - Github repo name
*/
export async function main(
gh_auth: wmill.Resource<"github">,
owner: string,
repo: string,
) {
const octokit = new Octokit(gh_auth);
const response = await octokit.rest.repos.get({
owner: owner,
repo: repo,
});
return response;
}
Submitted by rossmccrann 846 days ago
import * as wmill from "https://deno.land/x/windmill@v1.12.0/index.ts";
import { Octokit } from "https://cdn.skypack.dev/octokit?dts";
/*
@param: {wmill.Resource} gh_auth - Resource containing Github Auth API Key
example:
{
auth: github_api_key
}
@param: {string} owner - Github username of repo owner
@param: {string} repo - Github repo name
*/
export async function main(
gh_auth: wmill.Resource<"c_github_auth">,
owner: string,
repo: string,
) {
const octokit = new Octokit(gh_auth);
const response = await octokit.rest.repos.get({
owner: owner,
repo: repo,
});
return response;
}
Submitted by rossmccrann 889 days ago