github: add daily TheRock dependency update workflow - #243
Open
lumachad wants to merge 1 commit into
Open
Conversation
lumachad
marked this pull request as draft
August 4, 2026 07:50
lumachad
marked this pull request as ready for review
August 4, 2026 10:05
lancesix
reviewed
Aug 4, 2026
lancesix
left a comment
Collaborator
There was a problem hiding this comment.
quick pass, with some minor remarks.
lumachad
force-pushed
the
users/lumachad/amd-staging/github/therock-deps-daily
branch
from
August 4, 2026 15:08
dbd6ff7 to
99c74d0
Compare
lumachad
force-pushed
the
users/lumachad/amd-staging/github/therock-deps-daily
branch
2 times, most recently
from
August 6, 2026 07:16
674698d to
7d22849
Compare
spatrang
requested changes
Aug 6, 2026
lumachad
force-pushed
the
users/lumachad/amd-staging/github/therock-deps-daily
branch
from
August 6, 2026 09:35
7d22849 to
521fc45
Compare
Adds a workflow intended to run twice daily (03:17 and 15:17 UTC) to bump THEROCK_COMMIT_REF and the therock_build_manylinux_x86_64 container digest in therock-ci-linux.yml. If an open PR labelled 'therock-deps' already exists, the run skips cleanly. The schedule is currently commented out for testing; the workflow can be triggered manually via workflow_dispatch in the meantime. The build container digest is fetched via the OCI Distribution API using Python's stdlib urllib, avoiding any external tool dependency. The TheRock commit is resolved against refs/heads/main explicitly rather than relying on HEAD. Co-Authored-By: Claude <noreply@anthropic.com>
lumachad
force-pushed
the
users/lumachad/amd-staging/github/therock-deps-daily
branch
from
August 6, 2026 09:43
521fc45 to
f21c4ef
Compare
spatrang
approved these changes
Aug 6, 2026
Comment on lines
+4
to
+6
| # schedule: # runs twice daily (03:17 and 15:17 UTC) | ||
| # - cron: '17 3 * * *' | ||
| # - cron: '17 15 * * *' |
Contributor
There was a problem hiding this comment.
Non-blocking: the schedule: triggers are commented out, so the workflow is manual-only (workflow_dispatch) for now - makes sense for validating via manual runs first. Consider a brief inline note (or a tracking issue) so re-enabling the cron isn't forgotten.
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 a workflow intended to run twice daily (03:17 and 15:17 UTC) to bump
THEROCK_COMMIT_REFand thetherock_build_manylinux_x86_64container digest intherock-ci-linux.yml. If an open PR labelledtherock-depsalready exists, the run skips cleanly.The schedule is currently commented out for testing; the workflow can be triggered manually via workflow_dispatch in the meantime.
The build container digest is fetched via the OCI Distribution API using Python's stdlib
urllib, avoiding any external tool dependency. The TheRock commit is resolved againstrefs/heads/mainexplicitly rather than relying on HEAD.