forked from HyperionGray/python-chrome-devtools-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauto-copilot-functionality-docs-review.yml
More file actions
640 lines (590 loc) · 23.3 KB
/
auto-copilot-functionality-docs-review.yml
File metadata and controls
640 lines (590 loc) · 23.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
name: "Code Functionality and Documentation Review"
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
on:
uto-amazonq-review.properties.json
push:
uto-amazonq-review.properties.json
branches:
uto-amazonq-review.properties.json
- main
uto-amazonq-review.properties.json
- master
uto-amazonq-review.properties.json
pull_request:
uto-amazonq-review.properties.json
types: [opened, synchronize, reopened]
uto-amazonq-review.properties.json
workflow_dispatch:
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
permissions:
uto-amazonq-review.properties.json
contents: write
uto-amazonq-review.properties.json
pull-requests: write
uto-amazonq-review.properties.json
issues: write
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
jobs:
uto-amazonq-review.properties.json
functionality-check:
uto-amazonq-review.properties.json
runs-on: self-hosted
uto-amazonq-review.properties.json
steps:
uto-amazonq-review.properties.json
- name: Checkout code
uto-amazonq-review.properties.json
uses: actions/checkout@main
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
- name: Setup Node.js
uto-amazonq-review.properties.json
uses: actions/setup-node@main
uto-amazonq-review.properties.json
with:
uto-amazonq-review.properties.json
node-version: '20'
uto-amazonq-review.properties.json
continue-on-error: true
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
- name: Setup Python
uto-amazonq-review.properties.json
uses: actions/setup-python@main
uto-amazonq-review.properties.json
with:
uto-amazonq-review.properties.json
python-version: '3.11'
uto-amazonq-review.properties.json
continue-on-error: true
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
- name: Setup Go
uto-amazonq-review.properties.json
uses: actions/setup-go@main
uto-amazonq-review.properties.json
with:
uto-amazonq-review.properties.json
go-version: 'stable'
uto-amazonq-review.properties.json
continue-on-error: true
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
- name: Install Dependencies and Build
uto-amazonq-review.properties.json
id: build
uto-amazonq-review.properties.json
run: |
uto-amazonq-review.properties.json
echo "BUILD_STATUS=unknown" >> $GITHUB_OUTPUT
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
# Node.js project
uto-amazonq-review.properties.json
if [ -f "package.json" ]; then
uto-amazonq-review.properties.json
echo "Detected Node.js project"
uto-amazonq-review.properties.json
npm install || echo "npm install failed"
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
if grep -q '"build"' package.json; then
uto-amazonq-review.properties.json
npm run build && echo "BUILD_STATUS=success" >> $GITHUB_OUTPUT || echo "BUILD_STATUS=failed" >> $GITHUB_OUTPUT
uto-amazonq-review.properties.json
else
uto-amazonq-review.properties.json
echo "BUILD_STATUS=no-build-script" >> $GITHUB_OUTPUT
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
# Python project
uto-amazonq-review.properties.json
if [ -f "requirements.txt" ] || [ -f "setup.py" ] || [ -f "pyproject.toml" ]; then
uto-amazonq-review.properties.json
echo "Detected Python project"
uto-amazonq-review.properties.json
if [ -f "requirements.txt" ]; then
uto-amazonq-review.properties.json
pip install -r requirements.txt || echo "pip install failed"
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
if [ -f "setup.py" ]; then
uto-amazonq-review.properties.json
pip install -e . || echo "setup.py install failed"
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
echo "BUILD_STATUS=success" >> $GITHUB_OUTPUT
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
# Go project
uto-amazonq-review.properties.json
if [ -f "go.mod" ]; then
uto-amazonq-review.properties.json
echo "Detected Go project"
uto-amazonq-review.properties.json
go build ./... && echo "BUILD_STATUS=success" >> $GITHUB_OUTPUT || echo "BUILD_STATUS=failed" >> $GITHUB_OUTPUT
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
# Java/Maven project
uto-amazonq-review.properties.json
if [ -f "pom.xml" ]; then
uto-amazonq-review.properties.json
echo "Detected Maven project"
uto-amazonq-review.properties.json
mvn clean compile && echo "BUILD_STATUS=success" >> $GITHUB_OUTPUT || echo "BUILD_STATUS=failed" >> $GITHUB_OUTPUT
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
# Gradle project
uto-amazonq-review.properties.json
if [ -f "build.gradle" ] || [ -f "build.gradle.kts" ]; then
uto-amazonq-review.properties.json
echo "Detected Gradle project"
uto-amazonq-review.properties.json
./gradlew build -x test && echo "BUILD_STATUS=success" >> $GITHUB_OUTPUT || echo "BUILD_STATUS=failed" >> $GITHUB_OUTPUT
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
continue-on-error: true
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
- name: Run Basic Functionality Tests
uto-amazonq-review.properties.json
run: |
uto-amazonq-review.properties.json
# Try to run tests if they exist
uto-amazonq-review.properties.json
if [ -f "package.json" ] && grep -q '"test"' package.json; then
uto-amazonq-review.properties.json
npm test || echo "Tests failed or not configured"
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
if [ -f "pytest.ini" ] || [ -d "tests" ]; then
uto-amazonq-review.properties.json
pytest || echo "Pytest tests failed or not configured"
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
if [ -f "go.mod" ]; then
uto-amazonq-review.properties.json
go test ./... || echo "Go tests failed or not configured"
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
continue-on-error: true
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
documentation-review:
uto-amazonq-review.properties.json
runs-on: self-hosted
uto-amazonq-review.properties.json
steps:
uto-amazonq-review.properties.json
- name: Checkout code
uto-amazonq-review.properties.json
uses: actions/checkout@main
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
- name: Analyze Documentation
uto-amazonq-review.properties.json
id: doc-analysis
uto-amazonq-review.properties.json
run: |
uto-amazonq-review.properties.json
echo "## Documentation Analysis" > /tmp/doc-analysis.md
uto-amazonq-review.properties.json
echo "" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
# Check for main documentation files
uto-amazonq-review.properties.json
echo "### Main Documentation Files:" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
for doc in README.md CONTRIBUTING.md LICENSE.md CHANGELOG.md CODE_OF_CONDUCT.md SECURITY.md; do
uto-amazonq-review.properties.json
if [ -f "$doc" ]; then
uto-amazonq-review.properties.json
echo "✅ $doc exists" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
else
uto-amazonq-review.properties.json
echo "❌ $doc is missing" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
done
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
echo "" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
echo "### README.md Quality Check:" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
if [ -f "README.md" ]; then
uto-amazonq-review.properties.json
word_count=$(wc -w < README.md)
uto-amazonq-review.properties.json
echo "- Word count: $word_count" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
if [ $word_count -lt 50 ]; then
uto-amazonq-review.properties.json
echo "⚠️ README.md is very short (< 50 words)" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
else
uto-amazonq-review.properties.json
echo "✅ README.md has adequate content" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
# Check for common sections
uto-amazonq-review.properties.json
for section in "Installation" "Usage" "Features" "Contributing" "License" "Documentation"; do
uto-amazonq-review.properties.json
if grep -qi "$section" README.md; then
uto-amazonq-review.properties.json
echo "✅ Contains '$section' section" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
else
uto-amazonq-review.properties.json
echo "⚠️ Missing '$section' section" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
done
uto-amazonq-review.properties.json
else
uto-amazonq-review.properties.json
echo "❌ README.md does not exist" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
echo "" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
echo "### Additional Documentation:" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
# Find all markdown files
uto-amazonq-review.properties.json
find . -name "*.md" \
uto-amazonq-review.properties.json
! -path "*/node_modules/*" \
uto-amazonq-review.properties.json
! -path "*/.venv/*" \
uto-amazonq-review.properties.json
! -path "*/vendor/*" \
uto-amazonq-review.properties.json
-type f | while read -r file; do
uto-amazonq-review.properties.json
echo "- $file" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
done || echo "No additional markdown files found" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
echo "" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
echo "### Code with Missing Documentation:" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
# Check for undocumented functions/classes (basic heuristic)
uto-amazonq-review.properties.json
# Python
uto-amazonq-review.properties.json
if find . -name "*.py" ! -path "*/.venv/*" ! -path "*/node_modules/*" | grep -q .; then
uto-amazonq-review.properties.json
echo "" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
echo "#### Python files:" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
find . -name "*.py" \
uto-amazonq-review.properties.json
! -path "*/.venv/*" \
uto-amazonq-review.properties.json
! -path "*/node_modules/*" \
uto-amazonq-review.properties.json
! -path "*/dist/*" \
uto-amazonq-review.properties.json
! -name "__init__.py" \
uto-amazonq-review.properties.json
-type f | while read -r file; do
uto-amazonq-review.properties.json
# Count functions and classes
uto-amazonq-review.properties.json
func_count=$(grep -c "^def " "$file" 2>/dev/null || echo 0)
uto-amazonq-review.properties.json
class_count=$(grep -c "^class " "$file" 2>/dev/null || echo 0)
uto-amazonq-review.properties.json
docstring_count=$(grep -c '"""' "$file" 2>/dev/null || echo 0)
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
total=$((func_count + class_count))
uto-amazonq-review.properties.json
if [ $total -gt 0 ] && [ $docstring_count -eq 0 ]; then
uto-amazonq-review.properties.json
echo "⚠️ $file: $total definitions, no docstrings" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
done
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
# JavaScript/TypeScript
uto-amazonq-review.properties.json
if find . \( -name "*.js" -o -name "*.ts" \) ! -path "*/node_modules/*" ! -path "*/dist/*" | grep -q .; then
uto-amazonq-review.properties.json
echo "" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
echo "#### JavaScript/TypeScript files:" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
find . \( -name "*.js" -o -name "*.ts" \) \
uto-amazonq-review.properties.json
! -path "*/node_modules/*" \
uto-amazonq-review.properties.json
! -path "*/dist/*" \
uto-amazonq-review.properties.json
! -path "*/build/*" \
uto-amazonq-review.properties.json
-type f | while read -r file; do
uto-amazonq-review.properties.json
# Count functions and classes
uto-amazonq-review.properties.json
func_count=$(grep -cE "(^function |^export function |^const .* = .*=>)" "$file" 2>/dev/null || echo 0)
uto-amazonq-review.properties.json
class_count=$(grep -c "^class " "$file" 2>/dev/null || echo 0)
uto-amazonq-review.properties.json
jsdoc_count=$(grep -c '/\*\*' "$file" 2>/dev/null || echo 0)
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
total=$((func_count + class_count))
uto-amazonq-review.properties.json
if [ $total -gt 5 ] && [ $jsdoc_count -eq 0 ]; then
uto-amazonq-review.properties.json
echo "⚠️ $file: ~$total definitions, no JSDoc comments" >> /tmp/doc-analysis.md
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
done
uto-amazonq-review.properties.json
fi
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
cat /tmp/doc-analysis.md
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
- name: GitHub Copilot Documentation Review
uto-amazonq-review.properties.json
uses: github/copilot-cli-actions@v1
uto-amazonq-review.properties.json
with:
uto-amazonq-review.properties.json
query: |
uto-amazonq-review.properties.json
Review the documentation for this repository:
uto-amazonq-review.properties.json
1. Check README.md completeness and quality
uto-amazonq-review.properties.json
2. Verify all features and functionality are documented
uto-amazonq-review.properties.json
3. Check for installation and usage instructions
uto-amazonq-review.properties.json
4. Identify missing or outdated documentation
uto-amazonq-review.properties.json
5. Suggest improvements for clarity and completeness
uto-amazonq-review.properties.json
6. Verify code comments and inline documentation
uto-amazonq-review.properties.json
7. Check for API documentation if applicable
uto-amazonq-review.properties.json
8. Ensure contributing guidelines are present
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
Provide specific recommendations with file names and sections.
uto-amazonq-review.properties.json
env:
uto-amazonq-review.properties.json
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uto-amazonq-review.properties.json
continue-on-error: true
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
- name: Create Documentation Review Report
uto-amazonq-review.properties.json
uses: actions/github-script@main
uto-amazonq-review.properties.json
with:
uto-amazonq-review.properties.json
github-token: ${{ secrets.GITHUB_TOKEN }}
uto-amazonq-review.properties.json
script: |
uto-amazonq-review.properties.json
const fs = require('fs');
uto-amazonq-review.properties.json
const analysis = fs.readFileSync('/tmp/doc-analysis.md', 'utf8');
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
const date = new Date().toISOString().split('T')[0];
uto-amazonq-review.properties.json
const title = `Code Functionality & Documentation Review - ${date}`;
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
const buildStatus = process.env.BUILD_STATUS || 'unknown';
uto-amazonq-review.properties.json
const buildEmoji = buildStatus === 'success' ? '✅' :
uto-amazonq-review.properties.json
buildStatus === 'failed' ? '❌' : '⚠️';
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
const body = `# Code Functionality and Documentation Review
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
## Build Status: ${buildEmoji} ${buildStatus}
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
${analysis}
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
## Functionality Review
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
- Build status: ${buildStatus}
uto-amazonq-review.properties.json
- Tests execution: See workflow logs for details
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
## Recommendations
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
### Documentation:
uto-amazonq-review.properties.json
1. **Complete README.md** with all required sections
uto-amazonq-review.properties.json
2. **Add missing documentation files** (CONTRIBUTING.md, CHANGELOG.md, etc.)
uto-amazonq-review.properties.json
3. **Document all public APIs** and exported functions
uto-amazonq-review.properties.json
4. **Add inline code comments** for complex logic
uto-amazonq-review.properties.json
5. **Create usage examples** and tutorials
uto-amazonq-review.properties.json
6. **Update outdated documentation** to match current code
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
### Functionality:
uto-amazonq-review.properties.json
1. **Ensure code builds successfully** in CI environment
uto-amazonq-review.properties.json
2. **Fix any broken functionality** identified in tests
uto-amazonq-review.properties.json
3. **Add error handling** and validation
uto-amazonq-review.properties.json
4. **Verify all features work as documented**
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
## Action Items
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
- [ ] Add/update missing documentation files
uto-amazonq-review.properties.json
- [ ] Improve README.md quality and completeness
uto-amazonq-review.properties.json
- [ ] Add code comments and docstrings
uto-amazonq-review.properties.json
- [ ] Fix build issues if any
uto-amazonq-review.properties.json
- [ ] Verify all features are documented
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
---
uto-amazonq-review.properties.json
*This issue was automatically generated by the Functionality & Documentation Review workflow.*
uto-amazonq-review.properties.json
`;
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
// Check for existing issues
uto-amazonq-review.properties.json
const issues = await github.rest.issues.listForRepo({
uto-amazonq-review.properties.json
owner: context.repo.owner,
uto-amazonq-review.properties.json
repo: context.repo.repo,
uto-amazonq-review.properties.json
state: 'open',
uto-amazonq-review.properties.json
labels: ['documentation', 'automated'],
uto-amazonq-review.properties.json
per_page: 10
uto-amazonq-review.properties.json
});
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
const recentIssue = issues.data.find(issue => {
uto-amazonq-review.properties.json
const createdAt = new Date(issue.created_at);
uto-amazonq-review.properties.json
const daysSinceCreation = (Date.now() - createdAt) / (1000 * 60 * 60 * 24);
uto-amazonq-review.properties.json
return daysSinceCreation < 7;
uto-amazonq-review.properties.json
});
uto-amazonq-review.properties.json
uto-amazonq-review.properties.json
if (recentIssue) {
uto-amazonq-review.properties.json
console.log(`Recent issue found: #${recentIssue.number}, updating`);
uto-amazonq-review.properties.json
await github.rest.issues.createComment({
uto-amazonq-review.properties.json
owner: context.repo.owner,
uto-amazonq-review.properties.json
repo: context.repo.repo,
uto-amazonq-review.properties.json
issue_number: recentIssue.number,
uto-amazonq-review.properties.json
body: `## Updated Analysis (${date})\n\nBuild Status: ${buildEmoji} ${buildStatus}\n\n${analysis}`
uto-amazonq-review.properties.json
});
uto-amazonq-review.properties.json
} else {
uto-amazonq-review.properties.json
await github.rest.issues.create({
uto-amazonq-review.properties.json
owner: context.repo.owner,
uto-amazonq-review.properties.json
repo: context.repo.repo,
uto-amazonq-review.properties.json
title: title,
uto-amazonq-review.properties.json
body: body,
uto-amazonq-review.properties.json
labels: ['documentation', 'functionality', 'automated', 'needs-review']
uto-amazonq-review.properties.json
});
uto-amazonq-review.properties.json
}
uto-amazonq-review.properties.json
env:
uto-amazonq-review.properties.json
BUILD_STATUS: ${{ steps.build.outputs.BUILD_STATUS }}
uto-amazonq-review.properties.json