Skip to content

Commit 0581983

Browse files
authored
Fix wrong input of afterSwitchCommand (anuraag016#18)
This has to be done after writing anuraag016#17 too quickly...
1 parent c4421ea commit 0581983

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ async function run(): Promise<void> {
1212
const githubToken = core.getInput('accessToken')
1313
const fullCoverage = JSON.parse(core.getInput('fullCoverageDiff'))
1414
const commandToRun = core.getInput('runCommand')
15-
const commandAfterSwitch = core.getInput('runCommand')
15+
const commandAfterSwitch = core.getInput('afterSwitchCommand')
1616
const delta = Number(core.getInput('delta'))
1717
const githubClient = github.getOctokit(githubToken)
1818
const prNumber = github.context.issue.number

0 commit comments

Comments
 (0)