Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Bumps the repository’s Rhiza template reference to v0.11.0 and synchronizes template-managed files, including adding support/tests for overriding the Rhiza sync workflow schedule.
Changes:
- Update Rhiza template ref/lock to v0.11.0.
- Add
RHIZA_SYNC_SCHEDULEdefault +_apply-sync-scheduletarget and wire it intomake sync. - Add sync-schedule override tests and introduce a CodeQL workflow via template sync.
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
.rhiza/tests/sync/test_sync_schedule.py |
Adds pytest coverage for the RHIZA_SYNC_SCHEDULE override and _apply-sync-schedule behavior. |
.rhiza/template.yml |
Updates the Rhiza template reference to v0.11.0. |
.rhiza/template.lock |
Updates pinned template SHA/ref and records synced files/timestamp. |
.rhiza/rhiza.mk |
Introduces RHIZA_SYNC_SCHEDULE and applies it post-sync via _apply-sync-schedule. |
.rhiza/.rhiza-version.rej |
Adds a patch rejection artifact file (should not be committed). |
.github/workflows/rhiza_release.yml |
Bumps docker/login-action patch version. |
.github/workflows/rhiza_codeql.yml |
Adds a CodeQL workflow from the updated template. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+111
to
+115
| _apply-sync-schedule: ## (internal) apply RHIZA_SYNC_SCHEDULE override to GitHub Actions sync workflow | ||
| @if [ "$(RHIZA_SYNC_SCHEDULE)" != "0 0 * * 1" ] && [ -f .github/workflows/rhiza_sync.yml ]; then \ | ||
| sed -i.bak "s|cron: '[^']*'|cron: '$(RHIZA_SYNC_SCHEDULE)'|" .github/workflows/rhiza_sync.yml && rm -f .github/workflows/rhiza_sync.yml.bak; \ | ||
| printf "${BLUE}[INFO] Applied custom sync schedule: $(RHIZA_SYNC_SCHEDULE)${RESET}\n"; \ | ||
| fi |
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
make sync🤖 Generated with Claude Code