mirror of
https://github.com/tauri-apps/tauricon.git
synced 2026-02-04 02:31:20 +01:00
* Prepare repo for release * fix path for formatter * fix package name in covector config * add resolution overwrite for semver-regex * feat: add covector dep * chore: pin covector * rename jobs * use uniform node-version string * setup node for audit job * cache yarn deps * Revert "cache yarn deps" This reverts commitee37a117bb. * remove outputs Co-authored-by: Jonas Kruckenberg <iterpre@protonmail.com> * Revert "setup node for audit job" This reverts commit267170a74f. Co-authored-by: Lucas Nogueira <lucas@tauri.studio> Co-authored-by: Jonas Kruckenberg <iterpre@protonmail.com>
18 lines
1015 B
Markdown
18 lines
1015 B
Markdown
# Contributing Guide
|
|
|
|
Hi! We, the maintainers, are really excited that you are interested in contributing to Tauri. Before submitting your contribution though, please make sure to take a moment and read through the [Code of Conduct](CODE_OF_CONDUCT.md).
|
|
|
|
## Pull Request Guidelines
|
|
|
|
- You have to [sign your commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits).
|
|
|
|
- It's OK to have multiple small commits as you work on the PR - we will let GitHub automatically squash it before merging.
|
|
|
|
- If adding new feature:
|
|
|
|
- Provide convincing reason to add this feature. Ideally you should open a suggestion issue first and have it greenlighted before working on it.
|
|
|
|
- If fixing a bug:
|
|
- If you are resolving a special issue, add `(fix: #xxxx[,#xxx])` (#xxxx is the issue id) in your PR title for a better release log, e.g. `fix: update entities encoding/decoding (fix #3899)`.
|
|
- Provide detailed description of the bug in the PR, or link to an issue that does.
|