This commit is contained in:
Patricio Pérez 2026-01-26 14:42:17 -05:00 committed by GitHub
commit edce7b26ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 2701 additions and 2 deletions

View file

@ -5,6 +5,7 @@ import { Context } from '@actions/github/lib/context';
import { GitHub } from '@actions/github/lib/utils';
import * as glob from '@actions/glob';
import * as io from '@actions/io';
import * as tc from '@actions/tool-cache';
export declare type AsyncFunctionArguments = {
context: Context;
core: typeof core;
@ -13,6 +14,7 @@ export declare type AsyncFunctionArguments = {
exec: typeof exec;
glob: typeof glob;
io: typeof io;
tc: typeof tc;
require: NodeRequire;
__original_require__: NodeRequire;
};