We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0adbc47 commit 0ab287bCopy full SHA for 0ab287b
src/run.ts
@@ -138,7 +138,10 @@ async function runLint(binPath: string, patchPath: string): Promise<void> {
138
}
139
140
if (core.getBooleanInput(`verify`, { required: true })) {
141
- const cmdVerify = `${binPath} config verify`
+ let cmdVerify = `${binPath} config verify`
142
+ if (userArgsMap.get("config")) {
143
+ cmdVerify += ` --config=${userArgsMap.get("config")}`
144
+ }
145
146
core.info(`Running [${cmdVerify}] in [${cmdArgs.cwd || process.cwd()}] ...`)
147
0 commit comments