Remove note about separation in `actions-util`

We could move everything into `util`, but in some ways it is nice having
a file dedicated to Actions related utilities.
This commit is contained in:
Henry Mercer 2022-11-14 18:46:43 +00:00
Родитель 8c8a9b1231
Коммит 03bb58c07d
3 изменённых файлов: 1 добавлений и 10 удалений

4
lib/actions-util.js сгенерированный
Просмотреть файл

@ -32,10 +32,6 @@ const sharedEnv = __importStar(require("./shared-environment"));
const util_1 = require("./util");
// eslint-disable-next-line import/no-commonjs
const pkg = require("../package.json");
/**
* The utils in this module are meant to be run inside of the action only.
* Code paths from the runner should not enter this module.
*/
/**
* Wrapper around core.getInput for inputs that always have a value.
* Also see getOptionalInput.

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -24,11 +24,6 @@ import {
// eslint-disable-next-line import/no-commonjs
const pkg = require("../package.json");
/**
* The utils in this module are meant to be run inside of the action only.
* Code paths from the runner should not enter this module.
*/
/**
* Wrapper around core.getInput for inputs that always have a value.
* Also see getOptionalInput.