Skip to content
Open
Show file tree
Hide file tree
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
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,12 @@ file](docs/tend.example.yaml) and a repo-local `/running-tend` skill.
| **notifications** | Every 15 minutes | Polls GitHub notifications, responds to unhandled mentions, marks handled threads as read. |
| **review-runs** | Daily | Reviews recent CI runs for behavioral problems and proposes skill/config improvements. |

Scheduled workflows also support manual dispatch for testing. All are
enabled by default except **ci-fix**, which requires `watched_workflows`
to be configured. Any can be disabled:
Scheduled workflows also support manual dispatch for testing. GitHub runs
`schedule` triggers on a best-effort basis and drops ticks under load, so
the intervals above are the requested cadence rather than a guarantee —
observed gaps between runs are routinely longer. All are enabled by
default except **ci-fix**, which requires `watched_workflows` to be
configured. Any can be disabled:

```yaml
workflows:
Expand Down
3 changes: 3 additions & 0 deletions docs/tend.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,9 @@ bot_name: my-project-bot
# - `prompt` (string) — override the default skill invocation
#
# Scheduled workflows also accept `cron` to override their default schedule.
# GitHub runs `schedule` triggers on a best-effort basis and drops ticks under
# load, so a cron is the requested cadence rather than a guarantee — observed
# gaps between runs are routinely longer than the interval.
#
# workflows:
# notifications:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,9 @@ bot_name: my-project-bot
# - `prompt` (string) — override the default skill invocation
#
# Scheduled workflows also accept `cron` to override their default schedule.
# GitHub runs `schedule` triggers on a best-effort basis and drops ticks under
# load, so a cron is the requested cadence rather than a guarantee — observed
# gaps between runs are routinely longer than the interval.
#
# workflows:
# notifications:
Expand Down
Loading