Skip to content

Commit 6a09065

Browse files
committed
Fix Devin review CI prompt
1 parent 2615c16 commit 6a09065

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/devin-review.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@ name: Devin Review
22

33
on:
44
pull_request:
5-
types: [opened, synchronize, reopened]
5+
types: [opened, synchronize, reopened, ready_for_review]
66

77
jobs:
88
devin-review:
99
runs-on: ubuntu-latest
10+
timeout-minutes: 30
11+
permissions:
12+
contents: read
13+
pull-requests: write
1014

1115
steps:
1216
- name: Checkout repository
@@ -26,4 +30,4 @@ jobs:
2630
env:
2731
CI: true # Ensures the tool runs in non-interactive CI mode
2832
run: |
29-
script -q -e -c "npx devin-review ${{ github.event.pull_request.html_url }}" /dev/null
33+
script -q -e -c "printf 'y\n' | npx devin-review '${{ github.event.pull_request.html_url }}'" /dev/null

0 commit comments

Comments
 (0)