Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/devin-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,10 @@ jobs:
node-version: '20'

- name: Run Devin Review
run: npx devin-review ${{ github.event.pull_request.html_url }}
# Use script to emulate a TTY as devin-review requires terminal features
# The -q flag suppresses script output, -e exits with command exit code,
# and -c runs the command. /dev/null discards script's own output.
env:
CI: true # Ensures the tool runs in non-interactive CI mode
run: |
script -q -e -c "npx devin-review ${{ github.event.pull_request.html_url }}" /dev/null
Loading