Skip to content

Commit

Permalink
Fix ignoreLabels ref to input
Browse files Browse the repository at this point in the history
  • Loading branch information
KeisukeYamashita committed Nov 5, 2020
1 parent 41c53b5 commit c82bd60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ async function run(): Promise<void> {
checkStatus: core.getInput('checkStatus') === 'true',
comment: core.getInput('comment'),
ignoreLabels:
core.getInput('labels') === ''
core.getInput('ignoreLabels') === ''
? []
: core.getInput('labels').split(','),
: core.getInput('ignoreLabels').split(','),
failStep: core.getInput('failStep') === 'true',
intervalSeconds: Number(core.getInput('intervalSeconds')) * 1000,
labels:
Expand Down

0 comments on commit c82bd60

Please sign in to comment.