chore(ci): trigger daily CI in v3.x-java branch #2198
Closed
rishav-karanjit wants to merge 8 commits into
Closed
Conversation
…ntain permissions' Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
…e-encryption-sdk-dynamodb into daily-ci-java-3x-trigger
rishav-karanjit
commented
Apr 9, 2026
Member
Author
|
Done in different way |
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.
How daily CI in v3.xJava Works?
13:00 UTC weekday — GitHub fires
daily_ci_java_3x.ymlonmain(schedule only runs from default branch). This is just the dispatcher.The dispatcher job runs — it calls the GitHub API:
This tells GitHub: "trigger
daily_ci.ymlon branchv3.x-Java."GitHub receives the API call — it looks at
daily_ci.ymlon thev3.x-Javabranch and checks: "does this workflow acceptworkflow_dispatchas a trigger?" If yes, it starts a new workflow run. If no, the API call fails.GitHub starts a new run of
daily_ci.yml— this run is associated withv3.x-Java, notmain. So when the jobs doactions/checkout(with noref), they check outv3.x-Javacode.Result: Two separate workflow runs happen — the dispatcher (on
main) and the real CI (onv3.x-Java). All reusable workflows run againstv3.x-Javawithout any modifications.By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.