├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── lint.yml │ ├── smoke-test.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── README_CI.md ├── action.yml ├── dist ├── index.js └── logout │ └── index.js ├── package.json ├── src ├── logout │ └── logout.ts └── main.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** linguist-generated=true 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/smoke-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/.github/workflows/smoke-test.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/README.md -------------------------------------------------------------------------------- /README_CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/README_CI.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/logout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/dist/logout/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/package.json -------------------------------------------------------------------------------- /src/logout/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/src/logout/logout.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailscale/github-action/HEAD/tsconfig.json --------------------------------------------------------------------------------