Skip to content

Commit 34ea3b2

Browse files
Change workflow to triage
1 parent fb2319e commit 34ea3b2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/triage-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Auggie CI Triage
33
on:
44
workflow_run:
55
workflows:
6-
- CI # Update with the workflow name(s) you want Auggie to triage
6+
- on-demand-review # Update with the workflow name(s) you want Auggie to triage
77
types:
88
- completed
99

@@ -31,7 +31,7 @@ jobs:
3131
- name: Set up Node.js 22
3232
uses: actions/setup-node@60edb5dd5019e0a72c57c00ac6c032d28fc096f4 # v4.1.0
3333
with:
34-
node-version: '22'
34+
node-version: "22"
3535

3636
- name: Download failing workflow logs
3737
id: download-logs
@@ -60,13 +60,13 @@ jobs:
6060
cat "$logfile" >> ci-failure.log
6161
echo "" >> ci-failure.log
6262
done
63-
63+
6464
# Ensure we have some content to analyze
6565
if [ ! -s ci-failure.log ]; then
6666
echo "No log content found to analyze" > ci-failure.log
6767
exit 1
6868
fi
69-
69+
7070
# Truncate to last 4000 lines to keep Auggie input manageable
7171
tail -n 4000 ci-failure.log > ci-failure-tail.log
7272
mv ci-failure-tail.log ci-failure.log

0 commit comments

Comments
 (0)