Open
Add BiocManager PACKAGES endpoint monitoring for devel and RELEASE_*#8
Conversation
Copilot created this pull request from a session on behalf of
LiNk-NY
July 28, 2026 16:26
View session
LiNk-NY
marked this pull request as ready for review
July 28, 2026 16:27
There was a problem hiding this comment.
Pull request overview
This PR adds new uptime monitoring for BiocManager’s PACKAGES index endpoints so incidents can be auto-created/resolved when those indexes become unavailable.
Changes:
- Adds two new monitored systems under the
BiocManagercategory forPACKAGESindex availability. - Adds two corresponding scheduled
webcheckcalls in the GitHub Actions workflow to auto-manage incidents for those endpoints.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
config.yml |
Adds two new BiocManager components intended to represent PACKAGES index endpoints. |
.github/workflows/checks.yaml |
Adds scheduled checks that invoke web_check_and_report.sh for the new endpoints/components. |
Comments suppressed due to low confidence (1)
config.yml:209
- Using
*in the system name will propagate into incident/log filenames (via.github/scripts/web_check_and_report.sh, which buildscontent/issues/${DATE}_$SYSTEM.mdandlogs/${SYSTEM}.csv). This makes filenames/URLs awkward to work with and also doesn’t match the PR description’sRELEASE_3_23/3.23target. Prefer an alphanumeric name (e.g.RELEASE_3_23 PACKAGES) and point at the versioned 3.23 URL.
- name: RELEASE_* PACKAGES
description: https://bioconductor.org/packages/release/bioc/src/contrib/PACKAGES
category: BiocManager
link: https://bioconductor.org/packages/release/bioc/src/contrib/PACKAGES
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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 status page monitoring for the
PACKAGESindex files used by BiocManager, covering both the current release (3.23) and devel (3.24) repositories.Changes
config.yml— adds two systems under theBiocManagercategory:devel PACKAGES→https://bioconductor.org/packages/3.24/bioc/src/contrib/PACKAGESRELEASE_3_23 PACKAGES→https://bioconductor.org/packages/3.23/bioc/src/contrib/PACKAGES.github/workflows/checks.yaml— adds corresponding scheduledwebcheckcalls for those two URLs, which will auto-create/resolve incidents if the endpoints become inaccessible.