├── .devcontainer └── devcontainer.json ├── .github └── workflows │ ├── test_failure_organization_not_installed.yml │ ├── test_failure_repository_not_installed.yml │ ├── test_organization_installed.yml │ ├── test_organization_installed_revocation.yml │ ├── test_repository_installed.yml │ ├── test_repository_installed_limited.yml │ ├── test_repository_installed_proxy.yml │ ├── test_repository_installed_proxy_explict_ignore.yml │ └── test_repository_installed_proxy_using_no_proxy.yml ├── .github_application ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── action.yml ├── dist ├── main │ ├── index.js │ ├── index.js.map │ ├── package.json │ ├── sourcemap-register.cjs │ └── sourcemap-register.js └── post │ ├── index.js │ ├── index.js.map │ ├── package.json │ ├── sourcemap-register.cjs │ └── sourcemap-register.js ├── package.json ├── src ├── actions │ ├── main.ts │ └── post.ts ├── github-application.test.ts ├── github-application.ts └── private-key.ts ├── test ├── squid.conf └── test-values.ts ├── tsconfig.json └── vitest.conig.ts /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/test_failure_organization_not_installed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/.github/workflows/test_failure_organization_not_installed.yml -------------------------------------------------------------------------------- /.github/workflows/test_failure_repository_not_installed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/.github/workflows/test_failure_repository_not_installed.yml -------------------------------------------------------------------------------- /.github/workflows/test_organization_installed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/.github/workflows/test_organization_installed.yml -------------------------------------------------------------------------------- /.github/workflows/test_organization_installed_revocation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/.github/workflows/test_organization_installed_revocation.yml -------------------------------------------------------------------------------- /.github/workflows/test_repository_installed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/.github/workflows/test_repository_installed.yml -------------------------------------------------------------------------------- /.github/workflows/test_repository_installed_limited.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/.github/workflows/test_repository_installed_limited.yml -------------------------------------------------------------------------------- /.github/workflows/test_repository_installed_proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/.github/workflows/test_repository_installed_proxy.yml -------------------------------------------------------------------------------- /.github/workflows/test_repository_installed_proxy_explict_ignore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/.github/workflows/test_repository_installed_proxy_explict_ignore.yml -------------------------------------------------------------------------------- /.github/workflows/test_repository_installed_proxy_using_no_proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/.github/workflows/test_repository_installed_proxy_using_no_proxy.yml -------------------------------------------------------------------------------- /.github_application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/.github_application -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/SECURITY.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/dist/main/index.js -------------------------------------------------------------------------------- /dist/main/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/dist/main/index.js.map -------------------------------------------------------------------------------- /dist/main/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /dist/main/sourcemap-register.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/dist/main/sourcemap-register.cjs -------------------------------------------------------------------------------- /dist/main/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/dist/main/sourcemap-register.js -------------------------------------------------------------------------------- /dist/post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/dist/post/index.js -------------------------------------------------------------------------------- /dist/post/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/dist/post/index.js.map -------------------------------------------------------------------------------- /dist/post/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /dist/post/sourcemap-register.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/dist/post/sourcemap-register.cjs -------------------------------------------------------------------------------- /dist/post/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/dist/post/sourcemap-register.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/src/actions/main.ts -------------------------------------------------------------------------------- /src/actions/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/src/actions/post.ts -------------------------------------------------------------------------------- /src/github-application.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/src/github-application.test.ts -------------------------------------------------------------------------------- /src/github-application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/src/github-application.ts -------------------------------------------------------------------------------- /src/private-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/src/private-key.ts -------------------------------------------------------------------------------- /test/squid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/test/squid.conf -------------------------------------------------------------------------------- /test/test-values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/test/test-values.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.conig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-murray/workflow-application-token-action/HEAD/vitest.conig.ts --------------------------------------------------------------------------------