├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── automerge.yml │ ├── licenseScanDependabot.yml │ └── test.yml ├── .gitignore ├── .husky └── pre-commit ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── action.yml ├── dist └── index.js ├── package.json ├── src ├── authenticate.js └── index.js └── test └── authenticate.test.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/licenseScanDependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/.github/workflows/licenseScanDependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/SECURITY.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/package.json -------------------------------------------------------------------------------- /src/authenticate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/src/authenticate.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/src/index.js -------------------------------------------------------------------------------- /test/authenticate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volkswagen/github-app-authentication-action/HEAD/test/authenticate.test.js --------------------------------------------------------------------------------