chore: change repo-assist daily run to /repo-assist only#354
Conversation
Greptile SummaryThis PR removes the daily cron schedule (
Confidence Score: 4/5Safe to merge — the trigger removal is intentional and the lock file is auto-generated from the updated source. The change correctly removes the daily schedule and workflow_dispatch from both the source markdown and the compiled lock file. The only thing worth fixing is the stale "runs daily" copy in the description field, which is cosmetic. The Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[GitHub Event] --> B{Event Type?}
B -->|slash_command /repo-assist| C[pre_activation job]
B -->|reaction: eyes| C
B -->|schedule daily 20:04 UTC - REMOVED| X[❌ No longer triggered]
B -->|workflow_dispatch - REMOVED| X
C --> D{activated == true?}
D -->|No| E[Skip - workflow exits]
D -->|Yes| F[activation job\nBuild prompt, add comment]
F --> G[agent job\nRun Copilot CLI with MCP tools]
G --> H[post_agent job\nProcess safe outputs]
H --> I[report job\nPost results as comment/PR]
|
This pull request makes a small change to the workflow trigger configuration by removing the daily schedule and manual dispatch options for the
repo-assistworkflow. The workflow will now only be triggered by theslash_commandandreactionevents.