Skip to content

Commit

Permalink
🐛 Fixes github token syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
rickstaa committed Dec 10, 2020
1 parent bd3842f commit 5880e27
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ inputs:
description: "The flake8 version for tests (optional, default='latest')"
required: false
default: "latest" # possible values ['latest', 'master', '[VERSION NUMBER]']
github_token:
description: 'GITHUB_TOKEN.'
github-token:
description: The automatically created secret github token (supply as '${{ secrets.GITHUB_TOKEN }}'').
required: true
level:
description: 'Report level for reviewdog [info,warning,error]'
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1609,7 +1609,7 @@ async function run() {
const devInstall = core.getInput("dev-install");
const reqFilePath = core.getInput("req-file-path");

const githubToken = core.getInput("githubToken");
const githubToken = core.getInput("github-token");
const level = core.getInput("level");
const reporter = core.getInput("reporter");

Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async function run() {
const devInstall = core.getInput("dev-install");
const reqFilePath = core.getInput("req-file-path");

const githubToken = core.getInput("githubToken");
const githubToken = core.getInput("github-token");
const level = core.getInput("level");
const reporter = core.getInput("reporter");

Expand Down

0 comments on commit 5880e27

Please sign in to comment.