Skip to content

Commit e37a803

Browse files
authored
Level up markdown content. (opensearch-project#106)
Signed-off-by: dblock <dblock@amazon.com>
1 parent 2634929 commit e37a803

7 files changed

+79
-120
lines changed

ADMINS.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Admins
2+
3+
| Admin | GitHub ID | Affiliation |
4+
| --------------- | --------------------------------------- | ----------- |
5+
| Henri Yandell | [hyandell](https://github.com/hyandell) | Amazon |
6+
7+
[This document](https://github.com/opensearch-project/.github/blob/main/ADMINS.md) explains what admins do in this repo. and how they should be doing it. If you're interested in becoming a maintainer, see [MAINTAINERS](MAINTAINERS.md). If you're interested in contributing, see [CONTRIBUTING](CONTRIBUTING.md).

CODE_OF_CONDUCT.md

+22-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
1-
## Code of Conduct
2-
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
3-
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
4-
opensource-codeofconduct@amazon.com with any additional questions or comments.
1+
This code of conduct applies to all spaces provided by the OpenSource project including in code, documentation, issue trackers, mailing lists, chat channels, wikis, blogs, social media and any other communication channels used by the project.
2+
3+
**Our open source communities endeavor to:**
4+
5+
* Be Inclusive: We are committed to being a community where everyone can join and contribute. This means using inclusive and welcoming language.
6+
* Be Welcoming: We are committed to maintaining a safe space for everyone to be able to contribute.
7+
* Be Respectful: We are committed to encouraging differing viewpoints, accepting constructive criticism and work collaboratively towards decisions that help the project grow. Disrespectful and unacceptable behavior will not be tolerated.
8+
* Be Collaborative: We are committed to supporting what is best for our community and users. When we build anything for the benefit of the project, we should document the work we do and communicate to others on how this affects their work.
9+
10+
**Our Responsibility. As contributors, members, or bystanders we each individually have the responsibility to behave professionally and respectfully at all times. Disrespectful and unacceptable behaviors include, but are not limited to:**
11+
12+
* The use of violent threats, abusive, discriminatory, or derogatory language;
13+
* Offensive comments related to gender, gender identity and expression, sexual orientation, disability, mental illness, race, political or religious affiliation;
14+
* Posting of sexually explicit or violent content;
15+
* The use of sexualized language and unwelcome sexual attention or advances;
16+
* Public or private harassment of any kind;
17+
* Publishing private information, such as physical or electronic address, without permission;
18+
* Other conduct which could reasonably be considered inappropriate in a professional setting;
19+
* Advocating for or encouraging any of the above behaviors.
20+
* Enforcement and Reporting Code of Conduct Issues:
21+
22+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported. [Contact us](mailto:opensource-codeofconduct@amazon.com). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances.

CONTRIBUTING.md

+3-93
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,4 @@
1-
# Contributing Guidelines
1+
## Contributing to this Project
22

3-
Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional
4-
documentation, we greatly value feedback and contributions from our community.
5-
6-
Please read through this document before submitting any issues or pull requests to ensure we have all the necessary
7-
information to effectively respond to your bug report or contribution.
8-
9-
## Reporting Bugs/Feature Requests
10-
11-
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
12-
13-
When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already
14-
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
15-
16-
- A reproducible test case or series of steps
17-
- The version of our code being used
18-
- Any modifications you've made relevant to the bug
19-
- Anything unusual about your environment or deployment
20-
21-
## Sign your work
22-
The sign-off is a simple line at the end of each commit, which certifies that you wrote it or otherwise have the right to pass it on as an open-source patch. if you can certify the below
23-
```
24-
By making a contribution to this project, I certify that:
25-
(a) The contribution was created in whole or in part by me and I
26-
have the right to submit it under the open source license
27-
indicated in the file; or
28-
(b) The contribution is based upon previous work that, to the best
29-
of my knowledge, is covered under an appropriate open source
30-
license and I have the right under that license to submit that
31-
work with modifications, whether created in whole or in part
32-
by me, under the same open source license (unless I am
33-
permitted to submit under a different license), as indicated
34-
in the file; or
35-
(c) The contribution was provided directly to me by some other
36-
person who certified (a), (b) or (c) and I have not modified
37-
it.
38-
(d) I understand and agree that this project and the contribution
39-
are public and that a record of the contribution (including all
40-
personal information I submit with it, including my sign-off) is
41-
maintained indefinitely and may be redistributed consistent with
42-
this project or the open source license(s) involved.
43-
```
44-
then you just add a line to every git commit message:
45-
```
46-
Signed-off-by: Bob Sanders <bob.sanders@email.com>
47-
```
48-
You can sign off your work easily by adding the configuration in github
49-
```
50-
git config user.name "Bob Sanders"
51-
git config user.email "bob.sanders@email.com"
52-
```
53-
Then, you could sign off commits automatically by adding `-s` or `-=signoff` parameter to your usual git commits commands. e.g.
54-
```
55-
git commit -s -m "my first commit"
56-
```
57-
58-
## Contributing via Pull Requests
59-
60-
Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
61-
62-
1. You are working against the latest source on the *main* branch.
63-
2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
64-
3. You open an issue to discuss any significant work - we would hate for your time to be wasted.
65-
66-
To send us a pull request, please:
67-
68-
1. Fork the repository.
69-
2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
70-
3. Ensure local tests pass.
71-
4. Commit to your fork using clear commit messages.
72-
5. Send us a pull request, answering any default questions in the pull request interface.
73-
6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
74-
75-
GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
76-
[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).
77-
78-
## Finding contributions to work on
79-
80-
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start.
81-
82-
## Code of Conduct
83-
84-
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
85-
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
86-
opensource-codeofconduct@amazon.com with any additional questions or comments.
87-
88-
## Security issue notifications
89-
90-
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.
91-
92-
## Licensing
93-
94-
See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
3+
OpenSearch is a community project that is built and maintained by people just like **you**.
4+
[This document](https://github.com/opensearch-project/.github/blob/main/CONTRIBUTING.md) explains how you can contribute to this and related projects.

DEVELOPER_GUIDE.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
- [Developer Guide](#developer-guide)
2+
- [Forking and Cloning](#forking-and-cloning)
3+
- [Submitting Changes](#submitting-changes)
4+
5+
## Developer Guide
6+
7+
So you want to contribute code to this project? Excellent! We're glad you're here. Here's what you need to do.
8+
9+
### Forking and Cloning
10+
11+
Fork this repository on GitHub, and clone locally with `git clone`.
12+
13+
### Submitting Changes
14+
15+
See [CONTRIBUTING](CONTRIBUTING.md).

LICENSE LICENSE.txt

File renamed without changes.

MAINTAINERS.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Maintainers
2+
3+
| Maintainer | GitHub ID | Affiliation |
4+
| --------------- | --------- | ----------- |
5+
| Peter Zhu | [peterzhuamazon](https://github.com/peterzhuamazon) | Amazon |
6+
| Peter Nied | [peternied](https://github.com/peternied) | Amazon |
7+
| Cameron Skinner | [camerski](https://github.com/camerski) | Amazon |
8+
| Barani Bikshandi | [bbarani](https://github.com/bbarani) | Amazon |
9+
| Sayali Gaikawad | [gaiksaya](https://github.com/gaiksaya) | Amazon |
10+
11+
[This document](https://github.com/opensearch-project/.github/blob/main/MAINTAINERS.md) explains what maintainers do in this repo, and how they should be doing it. If you're interested in contributing, see [CONTRIBUTING](CONTRIBUTING.md).

README.md

+21-23
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,39 @@
1-
- [Contributing](#contributing)
2-
- [Code of Conduct](#code-of-conduct)
3-
- [Security](#security)
4-
- [Licensing](#licensing)
5-
- [Questions](#Questions)
6-
- [Issues](#Issues)
7-
- [Copyright](#copyright)
1+
<img src="https://opensearch.org/assets/brand/SVG/Logo/opensearch_logo_default.svg" height="64px"/>
82

9-
# OpenSearch / OpenSearch Dashboards build repository
3+
- [OpenSearch Build](#opensearch-build)
4+
- [Contributing](#contributing)
5+
- [Getting Help](#getting-help)
6+
- [Code of Conduct](#code-of-conduct)
7+
- [Security](#security)
8+
- [License](#license)
9+
- [Copyright](#copyright)
1010

11-
This repository contains the scripts for building OpenSearch and OpenSearch Dashboards distributions.
11+
## OpenSearch Build
12+
13+
This repository contains the scripts for building OpenSearch, and OpenSearch Dashboards distributions.
1214

1315
## Contributing
1416

15-
We welcome you to get involved in development, documentation, and testing of the build scripts.
17+
See [developer guide](DEVELOPER_GUIDE.md) and [how to contribute to this project](CONTRIBUTING.md).
18+
19+
## Getting Help
1620

17-
See our [contribution guidelines](CONTRIBUTING.md) and the [developer guide](DEVELOPER_GUIDE.md) to get started.
21+
If you find a bug, or have a feature request, please don't hesitate to open an issue in this repository.
22+
23+
For more information, see [project website](https://opensearch.org/) and [documentation](https://docs-beta.opensearch.org/). If you need help and are unsure where to open an issue, try [forums](https://discuss.opendistrocommunity.dev/).
1824

1925
## Code of Conduct
2026

21-
This project has adopted an [Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
27+
This project has adopted the [Amazon Open Source Code of Conduct](CODE_OF_CONDUCT.md). For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq), or contact [opensource-codeofconduct@amazon.com](mailto:opensource-codeofconduct@amazon.com) with any additional questions or comments.
2228

2329
## Security
2430

2531
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public GitHub issue.
2632

27-
## Licensing
28-
29-
See the [LICENSE](LICENSE.txt) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
30-
31-
## Questions
32-
33-
If you have any questions, please join our community forum [here](https://discuss.opendistrocommunity.dev/)
34-
35-
## Issues
33+
## License
3634

37-
File any issues [here](https://github.com/opensearch-project/opensearch-build/issues).
35+
This project is licensed under the [Apache v2.0 License](LICENSE.txt).
3836

3937
## Copyright
4038

41-
Copyright 2021 OpenSearch Contributors
39+
Copyright 2020-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.

0 commit comments

Comments
 (0)