You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR narrows the repository to the ruby feature so CI/test runtime is spent only on Ruby-relevant paths. Non-ruby feature content and workflows are removed, and remaining workflows are constrained to Ruby.
Repository scope reduction
Removed all non-ruby feature directories under src/ and test/.
Kept only src/ruby and test/ruby as the maintained feature/test surface.
CI workflow narrowing
Simplified feature test matrices in test-all.yaml to ruby only.
Simplified PR change-detection in test-pr.yaml to watch only ruby paths and removed non-ruby conditional jobs/exclusions.
Updated manual test workflow defaults (test-manual.yaml) to run ruby by default.
Removed workflows dedicated to non-ruby feature maintenance/testing.
Documentation alignment
Updated README.md examples and repo structure to reflect a ruby-only feature collection.
The reason will be displayed to describe this comment to others. Learn more.
Copilot wasn't able to review this pull request because it exceeds the maximum number of files (300). Try reducing the number of changed files and requesting a review from Copilot again.
@copilot update this so that the GitHub Actions will run. i am reviewing this PR now and the actions did not run
Updated in commit 5ee41e4. I changed .github/workflows/test-pr.yaml so PR workflows always run ruby tests directly (no change-detection gating), which ensures GitHub Actions run on pull requests.
Fixed in commit 2365e9a. test-scenarios was assigned to devcontainer-image-builder-ubuntu, but that runner was not available for this PR run (no steps started, runner_id 0). I changed it to ubuntu-latest so the job starts normally and shows logs.
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
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.
This PR narrows the repository to the
rubyfeature so CI/test runtime is spent only on Ruby-relevant paths. Non-ruby feature content and workflows are removed, and remaining workflows are constrained to Ruby.Repository scope reduction
src/andtest/.src/rubyandtest/rubyas the maintained feature/test surface.CI workflow narrowing
test-all.yamltorubyonly.test-pr.yamlto watch onlyrubypaths and removed non-ruby conditional jobs/exclusions.test-manual.yaml) to runrubyby default.Documentation alignment
README.mdexamples and repo structure to reflect a ruby-only feature collection.