We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b6d754c + 4f93ea9 commit 84d74ebCopy full SHA for 84d74eb
.github/workflows/devin-review.yml
@@ -20,4 +20,10 @@ jobs:
20
node-version: '20'
21
22
- name: Run Devin Review
23
- run: npx devin-review ${{ github.event.pull_request.html_url }}
+ # Use script to emulate a TTY as devin-review requires terminal features
24
+ # The -q flag suppresses script output, -e exits with command exit code,
25
+ # and -c runs the command. /dev/null discards script's own output.
26
+ env:
27
+ CI: true # Ensures the tool runs in non-interactive CI mode
28
+ run: |
29
+ script -q -e -c "npx devin-review ${{ github.event.pull_request.html_url }}" /dev/null
0 commit comments