We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cb6708d + ff4aa67 commit 7592c91Copy full SHA for 7592c91
.github/workflows/lgtm.yml
@@ -16,7 +16,12 @@ jobs:
16
with:
17
ref: refs/pull/${{ github.event.issue.number }}/merge
18
19
- - name: Run logic
+ - name: Run LGTM Review
20
run: |
21
- echo "Running manually triggered workflow on PR #${{ github.event.issue.number }}"
22
- echo "Pull Request URL: https://github.com/${{ github.repository }}/pull/${{ github.event.issue.number }}"
+ docker run --rm elementsinteractive/lgtm-ai \
+ lgtm review --pr-url "https://github.com/${{ github.repository }}/pull/${{ github.event.issue.number }}" \
23
+ --git-api-key "${{ secrets.GITHUB_TOKEN }}" \
24
+ --ai-api-key "${{ secrets.AI_API_TOKEN }}" \
25
+ --model "gemini-2.5-pro-preview-05-06" \
26
+ --publish
27
+ -vv
0 commit comments