├── .env.example ├── .gitignore ├── .gitlab-ci.yml ├── README.md ├── index.html ├── package.json └── src ├── chatgpt.js ├── gitlab.js ├── index.js ├── request.js └── utils.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytanck/chat-review-gitlab/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *-lock.json -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytanck/chat-review-gitlab/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytanck/chat-review-gitlab/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytanck/chat-review-gitlab/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytanck/chat-review-gitlab/HEAD/package.json -------------------------------------------------------------------------------- /src/chatgpt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytanck/chat-review-gitlab/HEAD/src/chatgpt.js -------------------------------------------------------------------------------- /src/gitlab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytanck/chat-review-gitlab/HEAD/src/gitlab.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytanck/chat-review-gitlab/HEAD/src/index.js -------------------------------------------------------------------------------- /src/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytanck/chat-review-gitlab/HEAD/src/request.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytanck/chat-review-gitlab/HEAD/src/utils.js --------------------------------------------------------------------------------