Support date ranges to select multiple PRs instead of providing these manually

This commit is contained in:
Jimmy Royer 2024-12-27 15:39:14 -05:00
parent c405d8ca5f
commit cc780e04dd
6 changed files with 232 additions and 180 deletions

33
.vscode/launch.json vendored Normal file
View 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"
}
]
}