(name: string)
| 2 | |
| 3 | // See: https://github.com/actions/toolkit/blob/master/packages/core/src/core.ts#L67 |
| 4 | function getInputName(name: string): string { |
| 5 | return `INPUT_${name.replace(/ /g, "_").toUpperCase()}`; |
| 6 | } |
| 7 | |
| 8 | export function setInput(name: string, value: string): void { |
| 9 | process.env[getInputName(name)] = value; |
no outgoing calls
no test coverage detected
searching dependent graphs…