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
Swaps the order of the Maintenance and Documentation categories in .github/release.yml, so that Documentation renders at the bottom of the auto-generated release notes (rationale from the issue: docs entries are usually typos and minor, so they belong last).
Per GitHub's docs on automatically generated release notes, "*" is a catch-all for PRs not matched by any other category, regardless of its position in the list. So docs-labeled PRs continue to land in Documentation; only the display order changes. The change only takes effect at the next release.
]
💖 Thanks for opening this pull request! 💖 The PyMC community really appreciates your time and effort to contribute to the project. Please make sure you have read our Contributing Guidelines and filled in our pull request template to the best of your ability.
Per GitHub's docs on automatically generated release notes, "*" is a catch-all for PRs not matched by any other category, regardless of its position in the list. So docs-labeled PRs continue to land in Documentation; only the display order changes. The change only takes effect at the next release.
That's not how I read it. Maybe the solution to this issue is to do nothing at all, but not mark typos and the like as docs
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.
Closes #8296.
Swaps the order of the Maintenance and Documentation categories in
.github/release.yml, so that Documentation renders at the bottom of the auto-generated release notes (rationale from the issue: docs entries are usually typos and minor, so they belong last).- title: Bugfixes 🪲 labels: - bug - - title: Documentation 📖 - labels: - - docs - title: Maintenance 🔧 labels: - "*" + - title: Documentation 📖 + labels: + - docsPer GitHub's docs on automatically generated release notes,
"*"is a catch-all for PRs not matched by any other category, regardless of its position in the list. Sodocs-labeled PRs continue to land in Documentation; only the display order changes. The change only takes effect at the next release.