-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#13 - Add a CONTRIBUTING.md #15
Open
JoaquimCJunior
wants to merge
1
commit into
hpc-social:main
Choose a base branch
from
JoaquimCJunior:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
# Contributing to Good First Issues | ||
|
||
Thank you for your interest in contributing to the **Good First Issues** project! Whether you're a beginner or an experienced contributor, this repository is a great place to start. We welcome contributions of all kinds, and we appreciate your help in improving this project. | ||
|
||
## Table of Contents | ||
|
||
- [About](#about) | ||
- [How to Contribute](#how-to-contribute) | ||
- [Reporting Bugs](#reporting-bugs) | ||
- [Submitting Code](#submitting-code) | ||
- [Documentation](#documentation) | ||
- [New Features](#new-features) | ||
- [Getting Started](#getting-started) | ||
- [Cloning the Repository](#cloning-the-repository) | ||
- [Project Workflow](#project-workflow) | ||
- [How to Add Repositories](#how-to-add-repositories) | ||
- [How to Add Good First Issues](#how-to-add-good-first-issues) | ||
- [Community](#community) | ||
- [Code of Conduct](#code-of-conduct) | ||
|
||
## About | ||
|
||
This repository is part of the **Good First Issues** initiative, designed to help new contributors find open source projects to get started with. If you have a project or community that offers "Good First Issues," simply add your repository to `.github/repos.txt` and any issue labeled with **Good First Issue** will automatically appear in the list. | ||
|
||
We use automation with GitHub Actions to manage repositories and issues, making it easy for maintainers to add their projects to the initiative and for new contributors to find beginner-friendly issues. | ||
|
||
## How to Contribute | ||
|
||
We welcome contributions in various forms. Here are some ways you can contribute: | ||
|
||
### Reporting Bugs | ||
|
||
If you find a bug or encounter an issue while using this project, please report it by creating a GitHub issue. Be sure to include: | ||
|
||
- A clear description of the problem. | ||
- Steps to reproduce the issue. | ||
- Any relevant logs or error messages. | ||
|
||
### Submitting Code | ||
|
||
If you're interested in fixing bugs, adding features, or improving the code, feel free to fork the repository and submit a pull request (PR). When submitting code, please: | ||
|
||
- Ensure your code follows our style guide. | ||
- Test your changes thoroughly before submitting. | ||
- Provide a clear description of what your PR is addressing. | ||
|
||
### Documentation | ||
|
||
Documentation contributions are always welcome! If you notice areas where the documentation can be improved, feel free to suggest changes or submit a PR. This can include: | ||
|
||
- Fixing typos or grammar mistakes. | ||
- Improving explanations or examples. | ||
- Adding new sections or clarifications. | ||
|
||
### New Features | ||
|
||
If you have an idea for a new feature or enhancement, please open an issue first to discuss it. Once the feature is approved, you can submit a PR with your implementation. | ||
|
||
## Getting Started | ||
|
||
To get started with development, you’ll first need to clone the repository to your local machine. You can do this using Git: | ||
|
||
```bash | ||
git clone https://github.com/hpc-social/good-first-issues.git | ||
cd good-first-issues | ||
``` | ||
## Getting Started | ||
|
||
### Cloning the Repository | ||
|
||
This repository includes two main automation scripts: | ||
|
||
- add-repos.py: Adds repositories to .github/repos.txt. | ||
- generate-first-issues.py: Generates and updates issues labeled "Good First Issue" based on the repositories listed. | ||
|
||
To run the scripts locally: | ||
|
||
```bash | ||
python .github/scripts/add-repos.py | ||
python .github/scripts/generate-first-issues.py | ||
``` | ||
|
||
## Project Workflow | ||
|
||
### How to Add Repositories | ||
|
||
If you want to add your repository to the "Good First Issues" list, simply follow these steps: | ||
|
||
- Open the .github/repos.txt file. | ||
- Add your repository’s full name (e.g., username/repository-name). | ||
- Commit and push your changes. | ||
Once your repository is added, the action will automatically start pulling "Good First Issues" from your repository. | ||
|
||
### How to Add Good First Issues | ||
|
||
To have an issue marked as a "Good First Issue" in your repository, follow these steps: | ||
|
||
- Label the issue with Good First Issue. | ||
- Ensure the issue is beginner-friendly and has clear instructions. | ||
- Submit the PR with the necessary modifications if required. | ||
|
||
## Community | ||
|
||
We encourage a friendly and respectful environment. Join us in our efforts to make open source more inclusive and welcoming. If you have any questions or need assistance, feel free to ask in the issues section. | ||
|
||
### Code of Conduct | ||
|
||
By participating in this project, you agree to abide by our Code of Conduct. Please take the time to read it and contribute in a respectful manner. |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might want to advise here to run this in a throwaway clone or branch, because it will change the state of the repository (and we typically want the actual updates to come in the automation).