fix: bug with incorrect action path (#1866)

Co-authored-by: GitHub Action <action@github.com>
This commit is contained in:
Tonye Jack
2024-01-17 00:20:30 -07:00
committed by GitHub
parent 67a1f54f6f
commit 3f8189989b
3 changed files with 3 additions and 3 deletions

View File

@@ -258,7 +258,7 @@ export async function run(): Promise<void> {
core.info("Using GitHub's REST API to get changed files")
if (process.env.GITHUB_ACTION_PATH) {
await warnUnsupportedRESTAPIInputs({
actionPath: process.env.GITHUB_ACTION_PATH,
actionPath: path.join(process.env.GITHUB_ACTION_PATH, 'action.yml'),
inputs
})
}