├── .env-example ├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── README.md ├── api ├── echo.ts └── webhook.post.ts ├── core ├── actions │ ├── close.ts │ └── label.ts ├── config.ts ├── constants.ts ├── index.ts ├── types.ts └── utils.ts ├── netlify.toml ├── nitro.config.ts ├── package.json ├── pnpm-lock.yaml ├── routes └── [...].ts └── tsconfig.json /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/.env-example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .nitro 3 | .output 4 | .env 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/README.md -------------------------------------------------------------------------------- /api/echo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/api/echo.ts -------------------------------------------------------------------------------- /api/webhook.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/api/webhook.post.ts -------------------------------------------------------------------------------- /core/actions/close.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/core/actions/close.ts -------------------------------------------------------------------------------- /core/actions/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/core/actions/label.ts -------------------------------------------------------------------------------- /core/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/core/config.ts -------------------------------------------------------------------------------- /core/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/core/constants.ts -------------------------------------------------------------------------------- /core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/core/index.ts -------------------------------------------------------------------------------- /core/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/core/types.ts -------------------------------------------------------------------------------- /core/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/core/utils.ts -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/netlify.toml -------------------------------------------------------------------------------- /nitro.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/nitro.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /routes/[...].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/routes/[...].ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/issue-up/HEAD/tsconfig.json --------------------------------------------------------------------------------