├── .gitignore ├── GPTPullRequestReview ├── icon.png ├── icon.svg ├── package-lock.json ├── package.json ├── src │ ├── git.ts │ ├── index.ts │ ├── pr.ts │ ├── review.ts │ └── utils.ts ├── task.json └── tsconfig.json ├── LICENSE ├── README.md ├── images ├── allow_access_token.png ├── contribute_to_pr.png └── icon.png ├── overview.md └── vss-extension.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/.gitignore -------------------------------------------------------------------------------- /GPTPullRequestReview/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/GPTPullRequestReview/icon.png -------------------------------------------------------------------------------- /GPTPullRequestReview/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/GPTPullRequestReview/icon.svg -------------------------------------------------------------------------------- /GPTPullRequestReview/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/GPTPullRequestReview/package-lock.json -------------------------------------------------------------------------------- /GPTPullRequestReview/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/GPTPullRequestReview/package.json -------------------------------------------------------------------------------- /GPTPullRequestReview/src/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/GPTPullRequestReview/src/git.ts -------------------------------------------------------------------------------- /GPTPullRequestReview/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/GPTPullRequestReview/src/index.ts -------------------------------------------------------------------------------- /GPTPullRequestReview/src/pr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/GPTPullRequestReview/src/pr.ts -------------------------------------------------------------------------------- /GPTPullRequestReview/src/review.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/GPTPullRequestReview/src/review.ts -------------------------------------------------------------------------------- /GPTPullRequestReview/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/GPTPullRequestReview/src/utils.ts -------------------------------------------------------------------------------- /GPTPullRequestReview/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/GPTPullRequestReview/task.json -------------------------------------------------------------------------------- /GPTPullRequestReview/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/GPTPullRequestReview/tsconfig.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/README.md -------------------------------------------------------------------------------- /images/allow_access_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/images/allow_access_token.png -------------------------------------------------------------------------------- /images/contribute_to_pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/images/contribute_to_pr.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/images/icon.png -------------------------------------------------------------------------------- /overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/overview.md -------------------------------------------------------------------------------- /vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlarhrouch/azure-pipeline-gpt-pr-review/HEAD/vss-extension.json --------------------------------------------------------------------------------