ci(verify): check out seamless-auth-server from its default branch#37
Merged
Conversation
The server no longer maintains a separate `dev` integration branch; `main` is now the single branch. Drop the `dev` default for the server checkout so it resolves to the default branch (main) like every other sibling repo, and update the AGENTS.md maintenance note to match.
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.
What
The
seamless-auth-serverrepo no longer maintains a separatedevintegration branch;mainis now its single branch. This drops thedevdefault for the server checkout in the reusable conformance workflow so it resolves to the repo's default branch (main), consistent with every other sibling repo (api, react SDK, seamless-templates).Changes
.github/workflows/verify-conformance.yml:ref: ${{ inputs.server-ref || 'dev' }}becomesref: ${{ inputs.server-ref }}, and the now-inaccurate comment aboutdevis removed. An explicitserver-refinput still overrides it.AGENTS.md: updated the "Sibling-repo branches" maintenance note to reflect that all siblings default tomain.Why
With no
devbranch on the server, the workflow would fail to check it out (or silently test the wrong ref). Defaulting to the default branch keeps conformance runs green and matches the other repos.Testing
seamless verifycommand; this only affects the CI checkout ref. No changeset (CI/docs only, not a published-package change).