Checkout the latest version at cron start#2889
Merged
Merged
Conversation
Fetch tags and checkout the latest release tag at the top of scripts/cron_common_start.sh. This ensures the cron run uses the latest bugbot release by querying the GitHub Releases API and checking out the returned tag.
There was a problem hiding this comment.
Pull request overview
Automates cron deployments by making each cron run update the working tree to the latest published mozilla/bugbot GitHub Release, removing the need for manual redeploy steps (per #2888).
Changes:
- Fetches remote tags at cron start.
- Resolves the latest GitHub Release tag via the GitHub API and checks out that tag before running the cron workload.
Comments suppressed due to low confidence (3)
scripts/cron_common_start.sh:3
- The release tag command substitution is unquoted. If the tag contains characters that trigger word-splitting/globbing (or is empty),
git checkoutcan receive the wrong arguments. Assign the tag to a variable andgit checkout --detach "$tag"(orgit switch --detach) with proper quoting, and validate it’s non-empty.
git fetch --tags && git checkout $(curl -s https://api.github.com/repos/mozilla/bugbot/releases/latest | jq -r '.tag_name')
scripts/cron_common_start.sh:3
curl -shides HTTP/network failures and the GitHub API is subject to rate limiting; this can cause intermittent empty/invalid tag values. Consider usingcurl -sSfwith timeouts/retries and (if available in the cron environment) an authenticated request viaAuthorization: Bearer $GITHUB_TOKENto make failures explicit and more reliable.
git fetch --tags && git checkout $(curl -s https://api.github.com/repos/mozilla/bugbot/releases/latest | jq -r '.tag_name')
scripts/cron_common_start.sh:3
- This introduces a new runtime dependency on
jq, but the repo didn’t previously invoke it in any scripts. If the cron host image doesn’t guaranteejqis installed, startup will fail. Either ensurejqis part of the runtime environment or switch to a parser already guaranteed to exist (e.g., Python).
git fetch --tags && git checkout $(curl -s https://api.github.com/repos/mozilla/bugbot/releases/latest | jq -r '.tag_name')
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
marco-c
approved these changes
May 21, 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.
Resolves #2888