You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { transport } from "./pino-transport-github-actions.js";
export async function run(app) {
const log = pino({}, transport);
const githubToken =
process.env.GITHUB_TOKEN ||
process.env.INPUT_GITHUB_TOKEN ||
process.env.INPUT_TOKEN;
if (!githubToken) {
log.error(
"[probot/adapter-github-actions] a token must be passed as `env.GITHUB_TOKEN` or `with.GITHUB_TOKEN` or `with.token`, see https://github.com/probot/adapter-github-actions#usage"