Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pull-requests.md 1.8KB

123456789101112131415161718192021222324252627282930313233
  1. # Managing pull requests
  2. You should:
  3. - use [GitHub reviews](https://help.github.com/articles/about-pull-request-reviews/)
  4. - review against the [Developer guide criteria](../developer-guide/rules.md)
  5. - resolve conflicts by [rebasing](https://www.atlassian.com/git/tutorials/rewriting-history/git-rebase)
  6. - assign _one or more_ [`pr: needs *`](https://github.com/stylelint/stylelint/labels) labels when requesting a change
  7. You should not use:
  8. - any other labels
  9. - any milestones
  10. ## Merging
  11. To merge a pull request, it must have at least:
  12. - one approval for simple documentation fixes
  13. - two approvals for everything else
  14. When merging a PR, you should:
  15. 1. ["Squash and merge"](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges#squash-and-merge-your-pull-request-commits) commits and ensure the resulting commit message is:
  16. - descriptive
  17. - sentence case
  18. 2. Update the [changelog](https://github.com/stylelint/stylelint/blob/master/CHANGELOG.md) directly via the [GitHub website](https://github.com/stylelint/stylelint/edit/master/CHANGELOG.md) for everything except refactoring and documentation changes:
  19. 1. Create a `## Head` heading if one does not exist already.
  20. 2. Prefix the item with either: "Removed", "Changed", "Deprecated", "Added", or "Fixed".
  21. 3. Order the item within the group by the widest-reaching first to the smallest, and then alphabetically by rule name.
  22. 4. Suffix the item with the relevant pull request number, using the complete GitHub URL so that it works on [the website](https://stylelint.io/CHANGELOG/).
  23. 5. If applicable, lead the item with the name of the rule, e.g. "Fixed: `unit-disallowed-list` false positives for SCSS nested properties".
  24. 3. Post this update as a comment to the pull request.