mirror of
https://github.com/freeedcom/ai-codereviewer.git
synced 2025-04-21 18:16:47 +00:00
Support date ranges to select multiple PRs instead of providing these manually
This commit is contained in:
parent
c405d8ca5f
commit
cc780e04dd
6 changed files with 232 additions and 180 deletions
33
.vscode/launch.json
vendored
Normal file
33
.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Collect AI Feedback",
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"args": [
|
||||
"src/exportComments.ts",
|
||||
"--owner",
|
||||
"cds-snc",
|
||||
"--repo",
|
||||
"notification-terraform",
|
||||
"--author",
|
||||
"github-actions[bot]",
|
||||
"--since",
|
||||
"2024-12-01",
|
||||
"--until",
|
||||
"2024-12-08",
|
||||
],
|
||||
"runtimeArgs": [
|
||||
"-r",
|
||||
"ts-node/register"
|
||||
],
|
||||
"cwd": "${workspaceRoot}",
|
||||
"protocol": "inspector",
|
||||
"internalConsoleOptions": "openOnSessionStart"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue