forked from magento/inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stanislav Idolov
committed
Jan 28, 2020
1 parent
1b7f611
commit f22690b
Showing
8 changed files
with
250 additions
and
0 deletions.
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,7 @@ | ||
<IfVersion < 2.4> | ||
Order deny,allow | ||
Deny from all | ||
</IfVersion> | ||
<IfVersion >= 2.4> | ||
Require all denied | ||
</IfVersion> |
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,46 @@ | ||
# Contributor Covenant Code of Conduct | ||
|
||
## Our Pledge | ||
|
||
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. | ||
|
||
## Our Standards | ||
|
||
Examples of behavior that contributes to creating a positive environment include: | ||
|
||
* Using welcoming and inclusive language | ||
* Being respectful of differing viewpoints and experiences | ||
* Gracefully accepting constructive criticism | ||
* Focusing on what is best for the community | ||
* Showing empathy towards other community members | ||
|
||
Examples of unacceptable behavior by participants include: | ||
|
||
* The use of sexualized language or imagery and unwelcome sexual attention or advances | ||
* Trolling, insulting/derogatory comments, and personal or political attacks | ||
* Public or private harassment | ||
* Publishing others' private information, such as a physical or electronic address, without explicit permission | ||
* Other conduct which could reasonably be considered inappropriate in a professional setting | ||
|
||
## Our Responsibilities | ||
|
||
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. | ||
|
||
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. | ||
|
||
## Scope | ||
|
||
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. | ||
|
||
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. | ||
|
||
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. | ||
|
||
## Attribution | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] | ||
|
||
[homepage]: http://contributor-covenant.org | ||
[version]: http://contributor-covenant.org/version/1/4/ |
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,48 @@ | ||
# Contributing to Magento Inventory project | ||
|
||
Contributions to the Magento Inventory codebase are done using the fork & pull model. | ||
This contribution model has contributors maintaining their own fork of the Magento Inventory repository. | ||
The forked repository is then used to submit a request to the base repository to “pull” a set of changes. | ||
For more information on pull requests please refer to [GitHub Help](https://help.github.com/articles/about-pull-requests/). | ||
|
||
Contributions can take the form of new components or features, changes to existing features, tests, documentation (such as developer guides, user guides, examples, or specifications), bug fixes or optimizations. | ||
|
||
The Magento Inventory development team or community maintainers will review all issues and contributions submitted by the community of developers in the first in, first out order. | ||
During the review we might require clarifications from the contributor. | ||
If there is no response from the contributor within two weeks, the pull request will be closed. | ||
|
||
For more detailed information on contribution please read our [beginners guide](https://github.com/magento/magento2/wiki/Getting-Started). | ||
|
||
## Contribution requirements | ||
|
||
1. Contributions must adhere to the [Magento coding standards](https://devdocs.magento.com/guides/v2.3/coding-standards/bk-coding-standards.html). | ||
2. Pull requests (PRs) must be accompanied by a meaningful description of their purpose. Comprehensive descriptions increase the chances of a pull request being merged quickly and without additional clarification requests. | ||
3. Commits must be accompanied by meaningful commit messages. Please see the [Magento Inventory Pull Request Template](https://github.com/magento/inventory/blob/1.1-develop/.github/PULL_REQUEST_TEMPLATE.md) for more information. | ||
4. PRs which include bug fixes must be accompanied with a step-by-step description of how to reproduce the bug. | ||
3. PRs which include new logic or new features must be submitted along with: | ||
* Unit/integration test coverage | ||
* Proposed [documentation](https://devdocs.magento.com) updates. Documentation contributions can be submitted via the [devdocs GitHub](https://github.com/magento/devdocs). | ||
4. For larger features or changes, please [open an issue](https://github.com/magento/inventory/issues) to discuss the proposed changes prior to development. This may prevent duplicate or unnecessary effort and allow other contributors to provide input. | ||
5. All automated tests must pass. | ||
|
||
## Contribution process | ||
|
||
If you are a new GitHub user, we recommend that you create your own [free github account](https://github.com/signup/free). | ||
This will allow you to collaborate with the Magento 2 development team, fork the Magento 2 project and send pull requests. | ||
|
||
1. Search current [listed issues](https://github.com/magento/inventory/issues) (open or closed) for similar proposals of intended contribution before starting work on a new contribution. | ||
2. Review the [Contributor License Agreement](https://magento.com/legaldocuments/mca) if this is your first time contributing. | ||
3. Create and test your work. | ||
4. Fork the Magento Inventory repository according to the [Fork a Repository instructions](https://devdocs.magento.com/guides/v2.3/contributor-guide/contributing.html#fork) and when you are ready to send us a pull request – follow the [Create a Pull Request instructions](https://devdocs.magento.com/guides/v2.3/contributor-guide/contributing.html#pull_request). | ||
5. Once your contribution is received the Magento Inventory development team will review the contribution and collaborate with you as needed. | ||
|
||
## Code of Conduct | ||
|
||
Please note that this project is released with a Contributor Code of Conduct. We expect you to agree to its terms when participating in this project. | ||
The full text is available in the repository [Wiki](https://github.com/magento/magento2/wiki/Magento-Code-of-Conduct). | ||
|
||
## Connecting with Community! | ||
|
||
If you have any questions, join us in [#beginners](https://magentocommeng.slack.com/messages/CH8BGFX9D) Slack chat. If you are not on our slack, [click here](https://opensource.magento.com/slack) to join. | ||
|
||
Need to find a project? Check out the [Slack Channels](https://github.com/magento/magento2/wiki/Slack-Channels) (with listed project info) and the [Magento Community Portal](https://opensource.magento.com/). |
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,36 @@ | ||
<!--- | ||
Thank you for contributing to Magento Inventory. | ||
To help us process this issue we recommend that you add the following information: | ||
- Summary of the issue, | ||
- Information on your environment, | ||
- Steps to reproduce, | ||
- Expected and actual results, | ||
Fields marked with (*) are required. Please don't remove the template. | ||
Please also have a look at our guidelines article before adding a new issue https://github.com/magento/magento2/wiki/Issue-reporting-guidelines | ||
--> | ||
|
||
### Preconditions (*) | ||
<!--- | ||
Please provide as detailed information about your environment as possible. | ||
For example Magento version, tag, HEAD, PHP & MySQL version, etc.. | ||
--> | ||
1. | ||
2. | ||
|
||
### Steps to reproduce (*) | ||
<!--- | ||
It is important to provide a set of clear steps to reproduce this bug. | ||
If relevant please include code samples | ||
--> | ||
1. | ||
2. | ||
3. | ||
|
||
### Expected result (*) | ||
<!--- Tell us what should happen --> | ||
1. [Screenshots, logs or description] | ||
|
||
### Actual result (*) | ||
<!--- Tell us what happens instead --> | ||
1. [Screenshots, logs or description] |
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,34 @@ | ||
--- | ||
name: Bug report | ||
about: Technical issue with the Magento Inventory components | ||
|
||
--- | ||
|
||
<!--- | ||
Please review our guidelines before adding a new issue: https://github.com/magento/magento2/wiki/Issue-reporting-guidelines | ||
Fields marked with (*) are required. Please don't remove the template. | ||
--> | ||
|
||
### Preconditions (*) | ||
<!--- | ||
Provide the exact Magento Inventory version (example: 2.3.2) and any important information on the environment where bug is reproducible. | ||
--> | ||
1. | ||
2. | ||
|
||
### Steps to reproduce (*) | ||
<!--- | ||
Important: Provide a set of clear steps to reproduce this bug. We can not provide support without clear instructions on how to reproduce. | ||
--> | ||
1. | ||
2. | ||
|
||
### Expected result (*) | ||
<!--- Tell us what do you expect to happen. --> | ||
1. [Screenshots, logs or description] | ||
2. | ||
|
||
### Actual result (*) | ||
<!--- Tell us what happened instead. Include error messages and issues. --> | ||
1. [Screenshots, logs or description] | ||
2. |
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,19 @@ | ||
--- | ||
name: Developer experience issue | ||
about: Issues related to customization, extensibility, modularity | ||
|
||
--- | ||
|
||
<!--- | ||
Please review our guidelines before adding a new issue: https://github.com/magento/magento2/wiki/Issue-reporting-guidelines | ||
Fields marked with (*) are required. Please don't remove the template. | ||
--> | ||
|
||
### Summary (*) | ||
<!--- Describe the issue you are experiencing. Include general information, error messages, environments, and so on. --> | ||
|
||
### Examples (*) | ||
<!--- Provide code examples or a patch with a test (recommended) to clearly indicate the problem. --> | ||
|
||
### Proposed solution | ||
<!--- Suggest your potential solutions for this issue. --> |
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,17 @@ | ||
--- | ||
name: Feature request | ||
about: Request for the new feature or behavior change | ||
|
||
--- | ||
|
||
### Description (*) | ||
<!--- Describe the feature you would like to add. --> | ||
|
||
### Expected behavior (*) | ||
<!--- What is the expected behavior of this feature? How is it going to work? --> | ||
|
||
### Benefits | ||
<!--- How do you think this feature would improve Magento? --> | ||
|
||
### Additional information | ||
<!--- What other information can you provide about the desired feature? --> |
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,43 @@ | ||
<!--- | ||
Thank you for contributing to Magento Inventory. | ||
To help us process this pull request we recommend that you add the following information: | ||
- Summary of the pull request, | ||
- Issue(s) related to the changes made, | ||
- Manual testing scenarios | ||
Fields marked with (*) are required. Please don't remove the template. | ||
--> | ||
|
||
<!--- Please provide a general summary of the Pull Request in the Title above --> | ||
|
||
### Description (*) | ||
<!--- | ||
Please provide a description of the changes proposed in the pull request. | ||
Letting us know what has changed and why it needed changing will help us validate this pull request. | ||
--> | ||
|
||
### Fixed Issues (if relevant) | ||
<!--- | ||
If relevant, please provide a list of fixed issues in the format magento/inventory#<issue_number>. | ||
There could be 1 or more issues linked here and it will help us find some more information about the reasoning behind this change. | ||
--> | ||
1. magento/inventory#<issue_number>: Issue title | ||
|
||
### Manual testing scenarios (*) | ||
<!--- | ||
Please provide a set of unambiguous steps to test the proposed code change. | ||
Giving us manual testing scenarios will help with the processing and validation process. | ||
--> | ||
1. ... | ||
2. ... | ||
|
||
### Questions or comments | ||
<!--- | ||
If relevant, here you can ask questions or provide comments on your pull request for the reviewer | ||
For example if you need assistance with writing tests or would like some feedback on one of your development ideas | ||
--> | ||
|
||
### Contribution checklist (*) | ||
- [ ] Pull request has a meaningful description of its purpose | ||
- [ ] All commits are accompanied by meaningful commit messages | ||
- [ ] All new or changed code is covered with unit/integration tests (if applicable) | ||
- [ ] All automated tests passed successfully (all builds are green) |