Open GabLeRoux opened 15 hours ago
@coderabbitai read ./README.md and ./CONTRIBUTING.md and suggest changes.
[!TIP] For best results, initiate chat on the files or code changes.
@GabLeRoux, after reviewing README.md
and CONTRIBUTING.md
, I have the following suggestions:
Add a link to CONTRIBUTING.md
in the README: In the "How to Contribute" section of README.md
, consider adding a direct link to the CONTRIBUTING.md
file to provide clear guidelines for contributors. For example:
### How to Contribute
We welcome [issues](https://github.com/game-ci/unity-orb/issues) and [pull requests](https://github.com/game-ci/unity-orb/pulls) against this repository! For detailed guidelines, see [CONTRIBUTING.md](./CONTRIBUTING.md).
Document how to use a fork or specific commit of the orb: Adding a new section to the README.md
titled "Development" or "Testing Your Fork" can help contributors test their changes. Here's a suggested addition:
## Development
If you'd like to contribute to this orb and test your changes:
1. **Fork this repository.**
2. **Make your changes** in a new branch.
3. **Pack and publish your fork** to a personal namespace:
```bash
circleci orb pack src > unity-orb.yml
circleci orb publish unity-orb.yml <your-namespace>/<your-orb-name>@dev:first
Use your fork in your CircleCI workflow.
Update your .circleci/config.yml
to reference your development version:
orbs:
unity: <your-namespace>/<your-orb-name>@dev:first
These updates should make it easier for contributors to understand how to contribute and test their changes. Let me know your thoughts!
Issue: Improve Documentation for Unity Orb
Description
The current documentation for the Unity Orb could be improved to make it easier for users to contribute and test their own changes. Specifically:
Add a link to the
CONTRIBUTING.md
file in the "How to Contribute" section of the README. This will provide users with a clear path to understand the guidelines and expectations for contributions.Document how to use a fork or a specific commit of the orb in workflows. This will help contributors test their changes before submitting a pull request.
Proposed Solution
To address these points:
In the README under the "How to Contribute" section, add:
Add a new section to the README titled
Development
orTesting Your Fork
. It could include instructions similar to the following:Development
If you would like to contribute to this orb and test your changes:
.circleci/config.yml
to reference your development version: