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
Nearly all pull requests should include a version plan that describes the changes and determines which packages should be bumped and how. This pull request adds a new workflow that ensures a version plan is present. If it is missing, the workflow will prompt the user to add one.
It looks like this PR changes code but doesn't include a version plan.
Version plans are required so we can properly bump package versions and generate changelogs.
🔍 Affected projects
@rozenite/metro
👉 What to do
Run the following command locally to create a version plan:
npx nx release plan
_(You can also pass specific projects: npx nx release plan --projects=@rozenite/metro)
When prompted, choose the appropriate version bump (patch / minor / major / prerelease).
Write a single-paragraph description of the change.
This text will be shown in the changelog.
Keep it clear and concise, describing what changed and why.
Commit the generated file(s) under .nx/version-plans/ and push to this branch.
✅ It's okay to create multiple version plans if your PR includes unrelated changes.
⚡ Once you do that, this check will pass automatically. Thanks for keeping our releases tidy!
This pull request has been marked as stale because it has been inactive for 30 days. Please update this pull request or it will be automatically closed in 14 days.
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.
Nearly all pull requests should include a version plan that describes the changes and determines which packages should be bumped and how. This pull request adds a new workflow that ensures a version plan is present. If it is missing, the workflow will prompt the user to add one.