Skip to content

Commit 5edcc58

Browse files
committed
Switch from PR-Agent to Momus
Replaces the Qodo PR-Agent reusable workflow with Momus (axiomantic/momus), an open-source from-scratch PR review bot.
1 parent bc7ce6b commit 5edcc58

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/momus.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Momus
2+
3+
on:
4+
pull_request:
5+
types: [opened, reopened, ready_for_review, synchronize]
6+
issue_comment:
7+
types: [created]
8+
workflow_dispatch:
9+
inputs:
10+
pr_number:
11+
description: PR number to review
12+
required: true
13+
type: string
14+
15+
jobs:
16+
call:
17+
permissions:
18+
contents: read
19+
pull-requests: write
20+
issues: write
21+
uses: elijahr/.github/.github/workflows/pr-review.yml@devel
22+
with:
23+
pr_number: ${{ github.event.pull_request.number || github.event.issue.number || github.event.inputs.pr_number }}
24+
event_name: ${{ github.event_name }}
25+
secrets:
26+
OPENROUTER_KEY: ${{ secrets.OPENROUTER_KEY }}

0 commit comments

Comments
 (0)