chore: re-enable workflows.weekly in tend config#5842
Merged
Conversation
The `enabled = false` and accompanying "Dependabot already handles dependency updates" comment date back to #5727, when the workflow was named `renovate` and only auto-opened dependency-update PRs. #5760 renamed `[workflows.renovate]` -> `[workflows.weekly]` but carried the disable forward unchanged. The renamed `weekly` skill no longer overlaps with Dependabot: it reviews open dependency PRs and approves safe ones, and runs repo-specific weekly tasks defined in running-tend (now including the go-task pin bump from #5840). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
prql-bot
commented
Apr 28, 2026
Collaborator
Author
prql-bot
left a comment
There was a problem hiding this comment.
Change is correct and self-contained. One coordination note: .claude/skills/running-tend/SKILL.md:16 currently reads Dependency management: Dependabot (tend-weekly is disabled) and #5840 modifies that same line but keeps the "is disabled" wording. Whichever of #5840 / #5842 merges last needs to flip that wording, otherwise main ends up with documentation that contradicts the config.
Member
|
update this based on #5840 merge |
#5840 documented the weekly go-task bump but kept the "tend-weekly is disabled" wording (it landed before this PR re-enabled the workflow). Now that this PR flips the toml, update the SKILL.md line to match. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Collaborator
Author
|
Done — merged main and pushed a229acf5 flipping |
This was referenced Apr 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Flips
[workflows.weekly] enabledfromfalsetotrueand removes the stale "Dependabot already handles dependency updates" comment.Context
The disable dates back to #5727, when the workflow was named
renovateand only auto-opened dependency-update PRs (so it overlapped with Dependabot). #5760 regenerated the tend workflows and renamed[workflows.renovate]->[workflows.weekly], but theenabled = falseand its comment carried over verbatim without revisiting the original justification.The renamed
weeklyskill does more than the oldrenovateone. From the bundledtend-ci-runner:weeklydescription: it (1) reviews open dependency PRs and approves safe ones (patch/minor with green CI), and (2) runs any repo-specific weekly tasks defined inrunning-tend— which after #5840 will include the manualgo-task/setup-taskversion:bump introduced in #5836. Neither overlaps with what Dependabot itself does.Trigger
#5836 (comment) — maintainer asked for the follow-up.