-
Notifications
You must be signed in to change notification settings - Fork 4
68 lines (59 loc) · 1.74 KB
/
code-review.yml
File metadata and controls
68 lines (59 loc) · 1.74 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
name: Azion AI Code Review
on:
workflow_dispatch:
# pull_request:
# types: [opened, synchronize]
# branches:
# - main
# - stage
permissions:
contents: read
pull-requests: write
checks: write
jobs:
ai-code-review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
- name: Install Dependencies
uses: ./.github/actions/install-dependencies
with:
node-version: 24
- name: Build
run: pnpm compile
- name: Install Action GitHub
run: |
npm install @actions/github
- name: Run Azion AI Code Review
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AZION_TOKEN: ${{ secrets.AZION_TOKEN }}
run: |
node ./scripts/code-review.mjs
continue-on-error: true
id: code_review
- name: Display error logs
if: failure() && steps.code_review.outcome == 'failure'
run: |
echo "Error during code review execution:"
cat ${{ github.workspace }}/*.log
- name: Update PR Status
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.checks.create({
owner: context.repo.owner,
repo: context.repo.repo,
name: 'Azion AI Code Review',
head_sha: context.payload.pull_request.head.sha,
status: 'completed',
conclusion: 'success',
output: {
title: 'Code review completed',
summary: 'The code review was completed successfully.'
}
})