Skip to content

Commit 5f7b2b7

Browse files
ci: add auto-code-review caller workflow
1 parent 8c0e9a0 commit 5f7b2b7

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Automated Code Review — caller workflow
2+
#
3+
# Drop this file into any Coding-Dev-Tools repo at
4+
# .github/workflows/auto-code-review.yml to enable
5+
# automated PR code review (lint, format, secret detection,
6+
# TODO/FIXME check, large file check, and PR comment summary).
7+
#
8+
# The reusable workflow is defined in the org .github repo:
9+
# Coding-Dev-Tools/.github/.github/workflows/auto-code-review.yml@main
10+
11+
name: Auto Code Review
12+
13+
on:
14+
pull_request:
15+
branches: [main]
16+
types: [opened, synchronize, reopened]
17+
18+
permissions:
19+
contents: read
20+
pull-requests: write
21+
security-events: write
22+
23+
jobs:
24+
code-review:
25+
uses: Coding-Dev-Tools/.github/.github/workflows/auto-code-review.yml@main

0 commit comments

Comments
 (0)