Retrieves the value of a GitHub Actions input.
Input names are matched case-insensitively — getInput("token") and getInput("TOKEN") both read the same INPUT_TOKEN env var.
getInput("token")
getInput("TOKEN")
INPUT_TOKEN
The name of the GitHub Actions input.
The value of the GitHub Actions input, or an empty string if not set.
Retrieves the value of a GitHub Actions input.
Input names are matched case-insensitively —
getInput("token")andgetInput("TOKEN")both read the sameINPUT_TOKENenv var.