ci: add kanban + PR-status caller workflows#19
Merged
Conversation
Splits the CI portion out of #15. These caller workflows live on develop (added in #5, #6, #9, #10) but never reached main. - pull_request_template.md - workflows/add-to-kanban.yml — auto-add new issues/PRs to project 2 - workflows/customer-priority-bump.yml — bump priority on customer label - workflows/kanban-closure-routing.yml — route closed work to the correct column - workflows/set-pr-status.yml — set PR status on the board - workflows/stale-backlog.yml — auto-close stale backlog issues - workflows/wip-limit-check.yml — enforce per-column WIP limits All delegate to the org-wide reusable workflows. No new logic in this repo. Closes #17. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Contributor
|
👋 Heads-up — Code review queue is at 18 / 8 Above the WIP limit. The team convention is to review existing PRs before opening new work. Open PRs currently in Code review (oldest first):
Pull from review before opening new work. (This is a nudge from the kanban WIP check, not a block.) |
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
Splits the CI portion out of #15. These caller workflows live on `develop` (added in #5, #6, #9, #10) but never reached `main`.
All delegate to the org-wide reusable workflows; no new logic in this repo.
Closes #17. Supersedes the CI portion of #15.
Open question for review
Worth confirming whether every workflow is appropriate for a docs/quickstart repo. `wip-limit-check` and `customer-priority-bump` were designed for engineering work and may be noise here. Happy to drop either during review.
Test plan
🤖 Generated with Claude Code
Note
Medium Risk
Workflow-only change, but it affects repo governance: issues/PRs will be auto-added/routed in a GitHub Project, can auto-close stale issues, and relies on a
PROJECTS_KANBAN_TOKENsecret which could fail or mis-route work if misconfigured.Overview
Adds a new
.github/pull_request_template.mdto standardize PR metadata, testing, and review checklist.Introduces multiple GitHub Actions workflows to automate repo triage: auto-add issues/PRs to the org kanban project, set PR board status, route closed issues/PRs, bump priority on customer labeling, enforce WIP limits, and schedule a stale-issue process that labels and closes inactive issues (PRs exempt). These mostly delegate to reusable org-wide workflows and add a required
PROJECTS_KANBAN_TOKENsecret for project access.Reviewed by Cursor Bugbot for commit 990b6ab. Bugbot is set up for automated code reviews on this repo. Configure here.