├── .checkov.yml ├── .devcontainer └── devcontainer.json ├── .env.example ├── .gitattributes ├── .github ├── codeql │ └── codeql-config.yml ├── copilot-instructions.md ├── dependabot.yml ├── prompts │ ├── create-release-notes.prompt.md │ └── unit-test.prompt.md └── workflows │ ├── check-dist.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── licensed.yml │ └── linter.yml ├── .gitignore ├── .licensed.yml ├── .licenses └── npm │ ├── @actions │ ├── core.dep.yml │ ├── exec.dep.yml │ ├── http-client.dep.yml │ └── io.dep.yml │ ├── @fastify │ └── busboy.dep.yml │ ├── tunnel.dep.yml │ └── undici.dep.yml ├── .markdown-lint.yml ├── .node-version ├── .prettierignore ├── .prettierrc.yml ├── .vscode ├── launch.json ├── mcp.json └── settings.json ├── .yaml-lint.yml ├── CODEOWNERS ├── LICENSE ├── README.md ├── __fixtures__ ├── core.js └── wait.js ├── __tests__ ├── main.test.js └── wait.test.js ├── action.yml ├── actionlint.yml ├── badges └── coverage.svg ├── dist ├── index.js └── index.js.map ├── eslint.config.mjs ├── jest.config.js ├── package.json ├── rollup.config.js └── src ├── index.js ├── main.js └── wait.js /.checkov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.checkov.yml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | 3 | dist/** -diff linguist-generated=true 4 | -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.github/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/prompts/create-release-notes.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.github/prompts/create-release-notes.prompt.md -------------------------------------------------------------------------------- /.github/prompts/unit-test.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.github/prompts/unit-test.prompt.md -------------------------------------------------------------------------------- /.github/workflows/check-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.github/workflows/check-dist.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.github/workflows/licensed.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.licensed.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/core.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.licenses/npm/@actions/core.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/exec.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.licenses/npm/@actions/exec.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/http-client.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.licenses/npm/@actions/http-client.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/io.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.licenses/npm/@actions/io.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@fastify/busboy.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.licenses/npm/@fastify/busboy.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/tunnel.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.licenses/npm/tunnel.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/undici.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.licenses/npm/undici.dep.yml -------------------------------------------------------------------------------- /.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.markdown-lint.yml -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 24.4.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .licenses/ 3 | dist/ 4 | node_modules/ 5 | coverage/ 6 | -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/.yaml-lint.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/README.md -------------------------------------------------------------------------------- /__fixtures__/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/__fixtures__/core.js -------------------------------------------------------------------------------- /__fixtures__/wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/__fixtures__/wait.js -------------------------------------------------------------------------------- /__tests__/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/__tests__/main.test.js -------------------------------------------------------------------------------- /__tests__/wait.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/__tests__/wait.test.js -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/action.yml -------------------------------------------------------------------------------- /actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/actionlint.yml -------------------------------------------------------------------------------- /badges/coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/badges/coverage.svg -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/src/index.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/src/main.js -------------------------------------------------------------------------------- /src/wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/javascript-action/HEAD/src/wait.js --------------------------------------------------------------------------------