Got the following warning in a workflow

The input is being used
|
const githubToken = core.getInput("repo-token"); |
But is not defined in the action file
|
inputs: |
|
title-regex: |
|
description: "Regex to ensure PR title matches. Allows anything by default." |
|
required: true |
|
default: ".*" |
|
on-failed-regex-comment: |
|
description: |
|
"Comment for the bot to post on PRs that fail the regex. Use %regex% to |
|
reference regex." |
|
required: true |
|
default: "PR title failed to match %regex%." |
Got the following warning in a workflow
The input is being used
pr-lint-action/src/main.ts
Line 8 in ea629c5
But is not defined in the action file
pr-lint-action/action.yml
Lines 7 to 17 in ea629c5