From cc0f9e360450c4de984f035aa0626235083717fe Mon Sep 17 00:00:00 2001 From: Chris Estreich Date: Tue, 29 Jul 2025 02:05:56 -0700 Subject: [PATCH] Add .roomotes.yml (#6346) --- .roo/roomotes.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .roo/roomotes.yml diff --git a/.roo/roomotes.yml b/.roo/roomotes.yml new file mode 100644 index 0000000000..33f6b3bd57 --- /dev/null +++ b/.roo/roomotes.yml @@ -0,0 +1,25 @@ +version: "1.0" + +commands: + - name: Pull latest changes + run: git pull + timeout: 60 + execution_phase: task_run + - name: Install dependencies + run: pnpm install + timeout: 60 + execution_phase: task_run + +github_events: + - event: issues.opened + action: + name: github.issue.fix + - event: issue_comment.created + action: + name: github.issue.comment.respond + - event: pull_request.opened + action: + name: github.pr.review + - event: pull_request_review_comment.created + action: + name: github.pr.comment.respond