Docs: Fix GitHub references

Reference-to: https://codeberg.org/tenacityteam/tenacity/issues/157
Signed-off-by: Avery King <avery98@pm.me>
This commit is contained in:
Avery King
2023-03-28 07:36:18 -07:00
committed by Gitea
parent 9d38b87de2
commit 624bb79bad

View File

@@ -11,7 +11,7 @@ Our IRC channel, [`#tenacity` on Libera](https://web.libera.chat/#tenacity)
[Matrix](https://matrix.to/#/#tenacity:libera.chat)), is the best place to ask [Matrix](https://matrix.to/#/#tenacity:libera.chat)), is the best place to ask
general questions about Tenacity and talk about feature requests in real time. general questions about Tenacity and talk about feature requests in real time.
You can use [GitHub Issues](https://github.com/tenacityteam/tenacity/issues) You can use [Codeberg Issues](https://codeberg.org/tenacityteam/tenacity/issues)
to report bugs and propose feature requests. Support questions will also be to report bugs and propose feature requests. Support questions will also be
accepted, but you must mark your support request with the 'Support' label, or accepted, but you must mark your support request with the 'Support' label, or
else it will be ignored and closed. else it will be ignored and closed.
@@ -29,23 +29,22 @@ Here are some general tips if you are unsure about submitting a bug report:
## Contributing ## Contributing
Contributing code to Tenacity is done either via Codeberg or GitHub. Tenacity Contributing code to Tenacity is done via Codeberg. Tenacity also requires you
requires you to Sign-off your commits, which indicates you agree to the to Sign-off your commits, which indicates you agree to the
[Developer Certificate of Origin](#developer-certificate-of-origin). Details below. [Developer Certificate of Origin](#developer-certificate-of-origin). Details
below.
### Submitting code ### Submitting code
#### Making pull requests on GitHub or Codeberg #### Making pull requests on Codeberg
To contribute code using GitHub, first fork either our To contribute code, first fork our
[GitHub repo](https://github.com/tenacityteam/tenacity) or our [Codeberg repository](https://codeberg.org/tenacityteam/tenacity)
[Codeberg](https://github.com/tenacityteam/tenacity)
and make your changes. Please use `git commit --amend` and and make your changes. Please use `git commit --amend` and
`git push -f` for minor changes and only if they are **your** commits. `git push -f` for minor changes and only if they are **your** commits.
_Note: be sure you open your pull request on the right platform. If you forked _Note: do **not** fork our GitHub mirror for contributing. We do not accept
the repository on GitHub, you would open your pull request on GitHub. If you pull requests on GitHub anymore. All contributions **must** be made through
forked the repository on Codeberg, you would open your pull request on
Codeberg._ Codeberg._
See [git-rebase.io](https://git-rebase.io) for more details. See [git-rebase.io](https://git-rebase.io) for more details.
@@ -180,8 +179,8 @@ to.
The following rules continue to support hosting our code on multiple platforms, The following rules continue to support hosting our code on multiple platforms,
such as both GitHub and Codeberg, without being unnecessarily locked in to such as both GitHub and Codeberg, without being unnecessarily locked in to
GitHub. Moreover, they are also necessary for complying to the GPL license, any single platform. Moreover, they are also necessary for complying to the GPL
ensuring our independence and just giving credit where it is due. license, ensuring our independence and just giving credit where it is due.
Our stance on these rules is not very strict. Worst case scenario, we may Our stance on these rules is not very strict. Worst case scenario, we may
correct the commit messages for you and inform you about what we had to correct correct the commit messages for you and inform you about what we had to correct
@@ -242,13 +241,13 @@ important:
their explicit permission. their explicit permission.
* If your patch resolves an issue that was previously mentioned in the Issues * If your patch resolves an issue that was previously mentioned in the Issues
tab on GitHub or in our mailing list, please use the `Reference-to:` tag, tab on Codeberg or in our mailing list, please use the `Reference-to:` tag,
followed by the URL where the issue in question was mentioned. followed by the URL where the issue in question was mentioned.
Example: Example:
``` ```
Reference-to: https://github.com/tenacityteam/tenacity/issues/2046 Reference-to: https://codeberg.org/tenacityteam/tenacity/issues/2046
``` ```
* Leave an empty line between tags such as `Signed-off-by:` and the rest of * Leave an empty line between tags such as `Signed-off-by:` and the rest of
@@ -267,23 +266,23 @@ important:
##### GitHub ##### GitHub
* Avoid using emojis or GitHub-specific references (e.g. `:tada:`) to emojis * Avoid using emojis or GitHub-specific or Gitea-specific references (e.g.
in your commits. They may look just fine on GitHub, but they do not anywhere `:tada:`) to emojis in your commits. They may look just fine on GitHub, but
else. they do not anywhere else.
##### Maintainers ##### Maintainers
* When merging pull requests from GitHub, make sure to remove references to * When merging pull requests from Codeberg, make sure to remove references to
issues or pull requests that have a numeric format (e.g. `(#1234)` or issues or pull requests that have a numeric format (e.g. `(#1234)` or
`Resolves #1234`). Please use the `Reference-to:` tag instead. `Resolves #1234`). Please use the `Reference-to:` tag instead.
Including a hyperlink to the said issue or pull request is preferred, because Including a hyperlink to the said issue or pull request is preferred, because
these links will not break outside of GitHub and will also reduce confusion these links will not break outside of Codeberg and will also reduce confusion
between patches that refer to issues in the Audacity repository and patches between patches that refer to issues in the Audacity repository and patches
that are meant to be used in Tenacity. If you use a hyperlink instead of just that are meant to be used in Tenacity. If you use a hyperlink instead of just
the #nnn format, GitHub will still show the #nnn format on the website, but the #nnn format, Codeberg will still show the #nnn format on the website, but
other websites and/or the command line will show the full hyperlink. other websites and/or the command line will show the full hyperlink. It also
This is good, because it reduces our dependency on GitHub. makes our commits friendlier to other platforms.
###### Merging branches ###### Merging branches