- Use This Guide ?
- Ask or Say Something? 🤔🐛😱
- Make Something? 🤓👩🏽💻📜🍳
- Add a Guide Like This One To My Project? 🤖😻👻
Thank you so much for your interest in contributing! See the table of contents for different ways to help and details about how this project handles them! 📝. Please make sure to read the relevant section before making your contribution!
All types of contributions are encouraged and valued. ✨💚.
If you have a question about this project, how to use it, or just need clarification about something:
- Open an Issue at https://github.com/sebinbenjamin/image-res-generator/issues
- Provide as much context as you can about what you're running into.
- Provide project and platform versions (Node.js, npm, etc.), depending on what seems relevant. If not, please be ready to provide that information if maintainers ask for it.
Once it's filed:
- The project team will label the issue.
- Someone will try to have a response soon.
- If you or the maintainers don't respond to an issue for 45 days, the issue will be closed. If you want to come back to it, reply (once, please), and we'll reopen the existing issue. Please avoid filing new issues as extensions of one you already made.
If you run into an error or bug with the project:
- Open an Issue at https://github.com/sebinbenjamin/image-res-generator/issues
- Include reproduction steps that someone else can follow to recreate the bug or error on their own.
- Provide project and platform versions (nodejs, npm, etc), depending on what seems relevant. If not, please be ready to provide that information if maintainers ask for it.
Once it's filed:
-
The project team will label the issue.
-
A team member will try to reproduce the issue with your provided steps. If there are no repro steps or no obvious way to reproduce the issue, the team will ask you for those steps and mark the issue as
needs-repro
. Bugs with theneeds-repro
tag will not be addressed until they are reproduced. -
If the team is able to reproduce the issue, it will be marked
needs-fix
, as well as possibly other tags (such ascritical
), and the issue will be left to be implemented by someone. -
If you or the maintainers don't respond to an issue for 30 days, the issue will be closed. If you want to come back to it, reply (once, please), and we'll reopen the existing issue. Please avoid filing new issues as extensions of one you already made.
-
critical
issues may be left open, depending on perceived immediacy and severity, even past the 30 day deadline.
If the project doesn't do something you need or want it to do:
- Open an Issue at https://github.com/sebinbenjamin/image-res-generator/issues
- Provide as much context as you can about what you're running into.
- Please try and be clear about why existing features and alternatives would not work for you.
Once it's filed:
- The project team will label the issue.
- The project team will evaluate the feature request, possibly asking you more questions to understand its purpose and any relevant requirements. If the issue is closed, the team will convey their reasoning and suggest an alternative path forward.
- If the feature request is accepted, it will be marked for implementation with
feature-accepted
, which can then be done by either by a core team member or by anyone in the community who wants to contribute code.
Note: The team is unlikely to be able to accept every single feature request that is filed. Please understand if they need to say no.
So you wanna contribute some code! That's great! This project uses Git workflow and pull requests to manage contributions, so read up on Git workflow and how to fork a GitHub project/filing a PR if you've never done it before.
To run the project locally:
Then in your terminal:
cd path/to/your/clone
npm install
And you should be ready to go!
Documentation is a going to be an important part of this project. Docs are how we keep track of what we're doing, how, and why. It's how we stay on the same page about our policies. And it's how we tell others everything they need in order to be able to use this project -- or contribute to it. So thank you in advance.
Documentation contributions of any size are welcome! Feel free to file a PR even if you're just rewording a sentence to be more clear, or fixing a spelling mistake!
To contribute documentation:
- Set up the project.
- Edit or add any relevant documentation.
- Make sure your changes are formatted correctly and consistently with the rest of the documentation.
- Re-read what you wrote, and run a spellchecker on it to make sure you didn't miss anything.
- Write clear, concise commit message(s) using conventional-changelog format. Documentation commits should use
docs(<component>): <message>
. - Go to https://github.com/sebinbenjamin/image-res-generator/pulls and open a new pull request with your changes.
- If your PR is connected to an open issue, add a line in your PR's description that says
Fixes: #123
, where#123
is the number of the issue you're fixing.
Once you've filed the PR:
- One or more maintainers will use GitHub's review feature to review your PR.
- If the maintainer asks for any changes, edit your changes, push, and ask for another review.
- If the maintainer decides to pass on your PR, they will thank you for the contribution and explain why they won't be accepting the changes. That's ok! We still really appreciate you taking the time to do it, and we don't take that lightly. 💚
- If your PR gets accepted, it will be marked as such, and merged into the
latest
branch soon after. Your contribution will be distributed to the masses next time the maintainers tag a release
We like code commits a lot! They're super handy, and they keep the project going and doing the work it needs to do to be useful to others.
Code contributions of just about any size are acceptable!
The main difference between code contributions and documentation contributions is that contributing code requires inclusion of relevant tests (to be standardized) for the code being added or changed. In course of time. contributions without accompanying tests will be held off until a test is added unless the maintainers consider the specific tests to be either impossible or way too much of a burden for such a contribution
- Set up the project.
- Make any necessary changes to the source code.
- Include any additional documentation the changes might need.
- Write tests that verify that your contribution works as expected.
- Write clear, concise commit message(s) as per conventional commits specification.
- Go to https://github.com/sebinbenjamin/image-res-generator/pulls and open a new pull request with your changes.
- If your PR is connected to an open issue, add a line in your PR's description that says
Fixes: #123
, where#123
is the number of the issue you're fixing.
-
Draft Pull Requests: If your work is still in progress and you need feedback, consider opening a draft pull request. Draft PRs are a great way to communicate with maintainers about your work before it's finalized. Draft pull requests cannot be merged until they're marked as "Ready for review." When you're ready for a full review, mark the draft PR as ready for review.
-
[WIP] Pull Requests: While it’s recommended to use draft PRs for work in progress, if you prefer to work with regular pull requests, you can still prepend
[WIP]
to the pull request title. This signals that the PR is not ready for a full review or merge. When the PR is ready, remove the[WIP]
tag from the title. Please consider using draft PRs instead of[WIP]
as they offer better integration with GitHub's review and merge processes.
type[optional scope]: subject
[optional body]
[optional footer]
- type - describes the category of your change.
- scope - describes the module affected by your change.
- subject - a brief description of what the software does after the change.
Example:
feat($compile): simplify isolate scope bindings
Changed the isolate scope binding options to:
- @attr - attribute binding (including interpolation)
- =model - by-directional model binding
- &expr - expression execution binding
This change simplifies the terminology as well as
number of choices available to the developer. It
also supports local name aliasing from the parent.
BREAKING CHANGE: isolate scope bindings definition has changed and the inject option for the directive controller injection was removed.
- Commit types recommended include:
fix(bug fix) | perf(performance related) | test(adding missing tests) | feat(feature) | improvement | refactor | build | ci | revert | chore(maintenance) | docs(documentation) | style(formatting, missing semicolons, …) | localize | security
. - Dependency updates, additions, or removals must be in individual commits, and the message must use the format:
type(deps): PKG@VERSION
. - A
BREAKING CHANGE:
can be in the footer added to commits of any type to notify the introduction of a breaking API change. - Closed issues should be listed on a separate line in the footer prefixed with "Closes" keyword like
Closes #234
, or in the case of multiple issues like:Closes #123, #245, #992
.
Once you've filed the PR:
- Barring special circumstances, maintainers will not review PRs until all checks pass (e.g., CircleCI).
- One or more maintainers will use GitHub's review feature to review your PR.
- If the maintainer asks for any changes, edit your changes, push, and ask for another review. Additional tags (such as
needs-tests
) will be added depending on the review. - If the maintainer decides to pass on your PR, they will thank you for the contribution and explain why they won't be accepting the changes. That's ok! We still really appreciate you taking the time to do it, and we don't take that lightly. 💚
- If your PR gets accepted, it will be marked as such, and merged into the
latest
branch soon after. Your contribution will be distributed to the masses next time the maintainers tag a release.
One of the most important tasks in handling issues is labeling them usefully and accurately. All other tasks involving issues ultimately rely on the issue being classified in such a way that relevant parties looking to do their tasks can find them quickly and easily.
In order to label issues, open up the list of unlabeled issues and, from newest to oldest, read through each one and apply issue labels according to the table below. If you're unsure about what label to apply, skip the issue and try the next one: don't feel obligated to label each and every issue yourself!
Label | Apply When | Notes |
---|---|---|
bug |
Cases where the code (or documentation) is behaving in a way it wasn't intended to. | If something is happening that surprises the user but does not go against the way the code is designed, it should use the enhancement label. |
critical |
Added to bug issues if the problem described makes the code completely unusable in a common situation. |
|
documentation |
Added to issues or pull requests that affect any of the documentation for the project. | Can be combined with other labels, such as bug or enhancement . |
duplicate |
Added to issues or PRs that refer to the exact same issue as another one that's been previously labeled. | Duplicate issues should be marked and closed right away, with a message referencing the issue it's a duplicate of (with #123 ). |
enhancement |
Added to feature requests, PRs, or documentation issues that are purely additive. | The code or docs currently work as expected, but a change is being requested or suggested. |
help wanted |
Applied by Committers to issues and PRs that they would like to get outside help for. | Generally, this means it's lower priority for the maintainer team to implement, but the community is encouraged to pick it up if they so desire. Never applied on first-pass labeling. |
in-progress |
Applied by Committers to PRs that are pending some work before they're ready for review. | The original PR submitter should @mention the team member that applied the label once the PR is complete. |
performance |
This issue or PR is directly related to improving performance. | |
refactor |
Added to issues or PRs that deal with cleaning up or modifying the project for the betterment of it. | |
good first issue |
Applied by Committers to issues that they consider good introductions to the project for people who have not contributed before. | These are not necessarily "easy", but rather focused on how much context is necessary to understand what needs to be done for this project in particular. Existing project members are expected to stay away from these unless they increase in priority. |
support |
This issue is either asking a question about how to use the project, clarifying the reason for unexpected behavior, or possibly reporting a bug but does not have enough detail yet to determine whether it would count as such. |
The label should be switched to bug if reliable reproduction steps are provided. Issues primarily with unintended configurations of a user's environment are not considered bugs, even if they cause crashes. |
tests |
This issue or PR either requests or adds primarily tests to the project. | |
wontfix |
Labelers may apply this label to issues that clearly have nothing at all to do with the project or are otherwise entirely outside of its scope/sphere of influence. | The issue or PR should be closed as soon as the label is applied, and a clear explanation provided of why the label was used. Contributors are free to contest the labeling, but the decision ultimately falls on committers as to whether to accept something or not. |
This guide was generated using the WeAllJS CONTRIBUTING.md
generator. Make your own!