chore: prove changeops flow in external repo#108
Open
kieronlanning wants to merge 8 commits into
Open
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Adds ChangeOps release-management configuration and a dedicated PR workflow to validate releases/* branches in this repo, helping prove out the ChangeOps flow end-to-end (branch naming/version alignment + build/test gates) before proceeding with further feature work.
Changes:
- Added a
release-validationGitHub Actions workflow that runs only for PRs targetingmainwhose source branch starts withreleases/. - Added
.changeops/config.jsonto enable/enforce changesets on PRs and define thereleases/v*branch pattern.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/workflows/release-validation.yml | Adds a PR workflow for releases/* branches that validates branch/version alignment and runs format/build/test for both main and sample solutions. |
| .changeops/config.json | Introduces ChangeOps configuration for GitHub + dotnet repos, including release branch pattern and changeset enforcement. |
Comment on lines
+58
to
+60
| - name: Test main solution | ||
| run: dotnet test "${MAIN_SOLUTION}" --no-build --verbosity normal --configuration "${CONFIGURATION}" | ||
|
|
| run: dotnet build "${SAMPLE_SOLUTION}" --no-restore --configuration "${CONFIGURATION}" | ||
|
|
||
| - name: Test sample solution | ||
| run: dotnet test "${SAMPLE_SOLUTION}" --no-build --verbosity normal --configuration "${CONFIGURATION}" |
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
Summary
eleases/* PRs
Proof target
Validate real branch push + PR checks + release validation workflow in a second repository before proceeding with new feature work.