blob: 9395a0a5133158226fdc1b1a97a9e94b96b6f8fa [file] [log] [blame]
import * as core from '@actions/core'
import * as github from '@actions/github'
async function run(): Promise<void> {
try {
const token: string = core.getInput('token')
core.debug(`Setting up OctoKit`)
const octokit = new github.GitHub(token)
// TODO: finish
} catch (error) {
core.setFailed(error.message)
}
}
run()