Skip to content

Commit

Permalink
Fix wrong input of afterSwitchCommand (#18)
Browse files Browse the repository at this point in the history
This has to be done after writing #17 too quickly...
  • Loading branch information
V-ed authored Aug 4, 2021
1 parent c4421ea commit 0581983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ async function run(): Promise<void> {
const githubToken = core.getInput('accessToken')
const fullCoverage = JSON.parse(core.getInput('fullCoverageDiff'))
const commandToRun = core.getInput('runCommand')
const commandAfterSwitch = core.getInput('runCommand')
const commandAfterSwitch = core.getInput('afterSwitchCommand')
const delta = Number(core.getInput('delta'))
const githubClient = github.getOctokit(githubToken)
const prNumber = github.context.issue.number
Expand Down

0 comments on commit 0581983

Please sign in to comment.