Rename github-token input to githubToken

This commit is contained in:
Michal Dorner 2020-05-21 00:38:22 +02:00
parent f29479bb44
commit 350b8cb78b
4 changed files with 7 additions and 7 deletions

View file

@ -6,7 +6,7 @@ import Filter from './filter'
async function run(): Promise<void> {
try {
const token = core.getInput('github-token', {required: true})
const token = core.getInput('githubToken', {required: true})
const filterYaml = core.getInput('filter', {required: true})
const client = new github.GitHub(token)