Skip to content

Commit 879108a

Browse files
committed
Sync auto-gpt5-implementation.yml from .github repo
1 parent 7fb5a8b commit 879108a

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

.github/workflows/auto-gpt5-implementation.yml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,13 @@ jobs:
7575
uses: github/codeql-action/autobuild@v3
7676
continue-on-error: true
7777

78-
- name: Copilot LLM Code Review (optional)
79-
if: ${{ secrets.COPILOT_TOKEN != '' }}
80-
uses: austenstone/copilot-cli-action@v2
78+
- name: Copilot LLM Code Review
79+
uses: austenstone/copilot-cli@v3
8180
with:
82-
copilot-token: ${{ secrets.COPILOT_TOKEN }}
81+
copilot-token: ${{ secrets.COPILOT_TOKEN || github.token }}
82+
repo-token: ${{ github.token }}
83+
model: gpt-5.3-codex
84+
reasoning-effort: xhigh
8385
prompt: |
8486
Perform a comprehensive code analysis of this repository:
8587
@@ -92,11 +94,13 @@ jobs:
9294
Provide actionable recommendations with file names and line numbers where applicable.
9395
continue-on-error: true
9496

95-
- name: Copilot LLM Test Coverage Review (optional)
96-
if: ${{ secrets.COPILOT_TOKEN != '' }}
97-
uses: austenstone/copilot-cli-action@v2
97+
- name: Copilot LLM Test Coverage Review
98+
uses: austenstone/copilot-cli@v3
9899
with:
99-
copilot-token: ${{ secrets.COPILOT_TOKEN }}
100+
copilot-token: ${{ secrets.COPILOT_TOKEN || github.token }}
101+
repo-token: ${{ github.token }}
102+
model: gpt-5.4
103+
reasoning-effort: xhigh
100104
prompt: |
101105
Analyze the repository's testing strategy:
102106
@@ -347,7 +351,7 @@ jobs:
347351
repo: context.repo.repo,
348352
title: title,
349353
body: body,
350-
labels: ['code-analysis', 'automated', 'security', 'performance']
354+
labels: ['gpt5', 'code-analysis', 'automated', 'security', 'performance']
351355
});
352356
}
353357
}

0 commit comments

Comments
 (0)