├── .checkov.yml ├── .devcontainer └── devcontainer.json ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── check-dist.yml │ ├── codeql-analysis.yml │ ├── continuous-integration.yml │ ├── first-interaction.yml │ ├── licensed.yml │ ├── linter.yml │ └── release.yml ├── .gitignore ├── .licensed.yml ├── .licenses └── npm │ ├── @actions │ ├── core.dep.yml │ ├── exec.dep.yml │ ├── github.dep.yml │ ├── http-client.dep.yml │ └── io.dep.yml │ ├── @fastify │ └── busboy.dep.yml │ ├── @octokit │ ├── auth-token-4.0.0.dep.yml │ ├── auth-token-6.0.0.dep.yml │ ├── core-5.2.0.dep.yml │ ├── core-7.0.3.dep.yml │ ├── endpoint-11.0.0.dep.yml │ ├── endpoint-9.0.6.dep.yml │ ├── graphql-7.1.0.dep.yml │ ├── graphql-9.0.1.dep.yml │ ├── openapi-types-20.0.0.dep.yml │ ├── openapi-types-24.2.0.dep.yml │ ├── openapi-types-25.1.0.dep.yml │ ├── plugin-paginate-rest-13.1.1.dep.yml │ ├── plugin-paginate-rest-9.2.2.dep.yml │ ├── plugin-request-log.dep.yml │ ├── plugin-rest-endpoint-methods-10.4.1.dep.yml │ ├── plugin-rest-endpoint-methods-16.0.0.dep.yml │ ├── request-10.0.3.dep.yml │ ├── request-8.4.1.dep.yml │ ├── request-error-5.1.1.dep.yml │ ├── request-error-7.0.0.dep.yml │ ├── rest.dep.yml │ ├── types-12.6.0.dep.yml │ ├── types-13.10.0.dep.yml │ └── types-14.1.0.dep.yml │ ├── before-after-hook-2.2.3.dep.yml │ ├── before-after-hook-4.0.0.dep.yml │ ├── deprecation.dep.yml │ ├── fast-content-type-parse.dep.yml │ ├── once.dep.yml │ ├── tunnel.dep.yml │ ├── undici.dep.yml │ ├── universal-user-agent-6.0.1.dep.yml │ ├── universal-user-agent-7.0.3.dep.yml │ └── wrappy.dep.yml ├── .markdown-lint.yml ├── .node-version ├── .prettierignore ├── .prettierrc.yml ├── .vscode └── launch.json ├── .yaml-lint.yml ├── CODEOWNERS ├── LICENSE ├── README.md ├── __fixtures__ ├── @actions │ ├── core.ts │ └── github.ts └── @octokit │ └── rest.ts ├── __tests__ └── main.test.ts ├── action.yml ├── actionlint.yml ├── badges └── coverage.svg ├── dist ├── index.d.ts ├── index.js ├── index.js.map └── main.d.ts ├── eslint.config.mjs ├── jest.config.js ├── package.json ├── rollup.config.ts ├── src ├── index.ts └── main.ts ├── tsconfig.base.json ├── tsconfig.eslint.json └── tsconfig.json /.checkov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.checkov.yml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | 3 | dist/** -diff linguist-generated=true 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.github/workflows/check-dist.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/first-interaction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.github/workflows/first-interaction.yml -------------------------------------------------------------------------------- /.github/workflows/licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.github/workflows/licensed.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.gitignore -------------------------------------------------------------------------------- /.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licensed.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/core.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@actions/core.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/exec.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@actions/exec.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/github.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@actions/github.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/http-client.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@actions/http-client.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@actions/io.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@actions/io.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@fastify/busboy.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@fastify/busboy.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/auth-token-4.0.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/auth-token-4.0.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/auth-token-6.0.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/auth-token-6.0.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/core-5.2.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/core-5.2.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/core-7.0.3.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/core-7.0.3.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/endpoint-11.0.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/endpoint-11.0.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/endpoint-9.0.6.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/endpoint-9.0.6.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/graphql-7.1.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/graphql-7.1.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/graphql-9.0.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/graphql-9.0.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/openapi-types-20.0.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/openapi-types-20.0.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/openapi-types-24.2.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/openapi-types-24.2.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/openapi-types-25.1.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/openapi-types-25.1.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/plugin-paginate-rest-13.1.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/plugin-paginate-rest-13.1.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/plugin-paginate-rest-9.2.2.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/plugin-paginate-rest-9.2.2.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/plugin-request-log.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/plugin-request-log.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/plugin-rest-endpoint-methods-10.4.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/plugin-rest-endpoint-methods-10.4.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/plugin-rest-endpoint-methods-16.0.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/plugin-rest-endpoint-methods-16.0.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/request-10.0.3.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/request-10.0.3.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/request-8.4.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/request-8.4.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/request-error-5.1.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/request-error-5.1.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/request-error-7.0.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/request-error-7.0.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/rest.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/rest.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/types-12.6.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/types-12.6.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/types-13.10.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/types-13.10.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/@octokit/types-14.1.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/@octokit/types-14.1.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/before-after-hook-2.2.3.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/before-after-hook-2.2.3.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/before-after-hook-4.0.0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/before-after-hook-4.0.0.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/deprecation.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/deprecation.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/fast-content-type-parse.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/fast-content-type-parse.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/once.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/once.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/tunnel.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/tunnel.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/undici.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/undici.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/universal-user-agent-6.0.1.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/universal-user-agent-6.0.1.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/universal-user-agent-7.0.3.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/universal-user-agent-7.0.3.dep.yml -------------------------------------------------------------------------------- /.licenses/npm/wrappy.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.licenses/npm/wrappy.dep.yml -------------------------------------------------------------------------------- /.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/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/first-interaction/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/.yaml-lint.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/README.md -------------------------------------------------------------------------------- /__fixtures__/@actions/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/__fixtures__/@actions/core.ts -------------------------------------------------------------------------------- /__fixtures__/@actions/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/__fixtures__/@actions/github.ts -------------------------------------------------------------------------------- /__fixtures__/@octokit/rest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/__fixtures__/@octokit/rest.ts -------------------------------------------------------------------------------- /__tests__/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/__tests__/main.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/action.yml -------------------------------------------------------------------------------- /actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/actionlint.yml -------------------------------------------------------------------------------- /badges/coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/badges/coverage.svg -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/dist/main.d.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/rollup.config.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/src/main.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/first-interaction/HEAD/tsconfig.json --------------------------------------------------------------------------------