Add workflow to auto-update SDK versions#1174
Open
rengarajan01 wants to merge 2 commits into
Open
Conversation
Add a GitHub Actions workflow (.github/workflows/update-sdk-versions.yml) that runs daily (and on manual dispatch) to fetch latest releases/tags for various SDK repos using the GitHub CLI and jq, and update badge and date fields in main/docs/libraries.mdx. The script handles repos with prefixed tags (monorepos), falls back to tags/commits when no release exists, formats dates, and uses sed to patch the file. If changes are detected it creates a branch (chore/sdk-version-update-YYYYMMDD) and opens a PR labeled sdk-version-autoupdate, avoiding duplicate open PRs.
Remove the ACUL SDK block from the update-sdk-versions workflow by deleting the "universal-login" update_sdk_prefixed call and its comment. This stops automatic version updates for auth0/universal-login (auth0-acul-js-v) in the workflow.
BcnCarlos
approved these changes
May 14, 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.
Description
Adds .github/workflows/update-sdk-versions.yml: a scheduled GitHub Actions workflow that keeps SDK version badges and release dates in main/docs/libraries.mdx up to date automatically.
The workflow runs daily at 6:17 UTC (and supports manual dispatch). For each of the 34 SDK entries in the libraries page it fetches the latest release from GitHub and updates two fields in the corresponding SectionCard component:
Two fetch strategies are used depending on the repo:
If any values changed, the workflow creates a branch chore/sdk-version-update-YYYYMMDD and opens a PR targeting main labeled sdk-version-autoupdate.
References
n/a
Testing
Checklist
CONTRIBUTING.md.