chore: add release workflows (promote, schedule, source-lock)#53
Merged
chore: add release workflows (promote, schedule, source-lock)#53
Conversation
Introduces four workflows for promoting test to main via FF: - release.yml: promote test to main with tag (dispatch or call) - schedule-release.yml: UI to schedule a release at a CST datetime - release-poller.yml: runs every 15 min, fires release when scheduled time hits - pr-source-check.yml: blocks PRs into main from sources other than test
entrius
approved these changes
Apr 16, 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.
Adds four workflows for the new test \u2192 main release flow:
release.yml\u2014 FF main to test's SHA + tag. Runs on workflow_dispatch or workflow_call. Posts to Discord viaDISCORD_WEBHOOK.schedule-release.yml\u2014 UI form (datetime + timezone) to schedule a release. Stores pending time inPENDING_RELEASE_ATrepo variable.release-poller.yml\u2014 cron every 15 min. When scheduled time hits, dispatchesrelease.ymland clears the variable.pr-source-check.yml\u2014 blocks PRs into main unless head istest.Requires secrets:
RELEASE_SCHEDULER_TOKEN(PAT with repo+workflow) andDISCORD_WEBHOOK.Commit these workflows first, then import the updated main/test rulesets from
~/dev/branch-rulesets/.