feat: migrate PR automation to Buildkite#26
Draft
Ilia wants to merge 1 commit into
Draft
Conversation
Replaces GitHub Actions scheduled workflows (unreliable under load, no SLA) with Buildkite pipelines + standalone shell scripts. Three scripts using GH_PAT instead of GitHub App token: - pr-review-digest.sh — channel digest of unreviewed PRs (unchanged logic) - draft-pr-reminders.sh — @mention authors about their draft PRs per timezone - ready-pr-reminders.sh — @mention authors about their ready PRs with no reviewer Buildkite schedules to configure (see .buildkite/ README in PR): pr-review-digest: twice per weekday at 8:30am and 2:30pm AEST pr-reminders: Monday 9am per timezone group (3 schedules × TIMEZONE_GROUP env var) Closes #24 (draft-pr-reminders GHA branch superseded by this). Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
JP-Ellis
approved these changes
Jun 3, 2026
2 tasks
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
GH_PATinstead of GitHub App JWT (create-github-app-token)Files
.buildkite/pr-review-digest.yml.buildkite/pr-reminders.yml.buildkite/scripts/pr-review-digest.sh.buildkite/scripts/draft-pr-reminders.shGH_PAT.buildkite/scripts/ready-pr-reminders.sh.buildkite/draft-pr-slack-mapping.json.github/workflows/pr-review-digest.ymlBuildkite setup required after merge
Pipeline 1: PR Review Digest
.buildkite/pr-review-digest.ymlGH_PAT,SLACK_WEBHOOK_URL30 22 * * 0-4— 8:30am AEST Mon–Fri30 4 * * 1-5— 2:30pm AEST Mon–FriPipeline 2: PR Reminders (draft + ready, per timezone)
.buildkite/pr-reminders.ymlGH_PAT,SLACK_WEBHOOK_URL0 23 * * 0+TIMEZONE_GROUP=Australia/Melbourne— Mon 9am AEST30 3 * * 1+TIMEZONE_GROUP=Asia/Kolkata— Mon 9am IST0 9 * * 1+TIMEZONE_GROUP=Europe/London— Mon 9am GMTSecrets needed:
GH_PAT(PAT withread:org+reposcopes),SLACK_WEBHOOK_URLCloses #24
🤖 Generated with Claude Code