Skip to content

Commit d4cd4f7

Browse files
Merge pull request #10 from FreeRTOS/dev
Dev
2 parents 5586634 + 337bd27 commit d4cd4f7

File tree

7 files changed

+183
-0
lines changed

7 files changed

+183
-0
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @FreeRTOS/pr-bar-raiser

.github/CODE_OF_CONDUCT.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
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+
[email protected] with any additional questions or comments.

.github/CONTRIBUTING.md

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Contributing Guidelines
2+
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+
10+
## Reporting Bugs/Feature Requests
11+
12+
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
13+
14+
When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already
15+
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
16+
17+
* A reproducible test case or series of steps
18+
* The version of our code being used
19+
* Any modifications you've made relevant to the bug
20+
* Anything unusual about your environment or deployment
21+
22+
23+
## Contributing via Pull Requests
24+
Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
25+
26+
1. You are working against the latest source on the *main* branch.
27+
2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
28+
3. You open an issue to discuss any significant work - we would hate for your time to be wasted.
29+
30+
To send us a pull request, please:
31+
32+
1. Ensure you are considering a change to AWS source code (FreeRTOS kernel, AWS libraries). Proposed changes to 3rd party code should be submitted instead to the 3rd party.
33+
2. Fork the repository.
34+
3. 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.
35+
4. Ensure local tests pass.
36+
5. Commit to your fork using clear commit messages.
37+
6. Send us a pull request, answering any default questions in the pull request interface.
38+
7. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
39+
40+
GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
41+
[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).
42+
43+
## Getting Your Pull Request Merged
44+
All Pull Requests must be approved by our review team before it can be merged in. We appreciate your patience while pull requests are reviewed as the time taken will depend on its complexity and wider implications.
45+
46+
47+
## Finding contributions to work on
48+
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.
49+
50+
51+
## Code of Conduct
52+
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
53+
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
54+
[email protected] with any additional questions or comments.
55+
56+
57+
## Security issue notifications
58+
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.
59+
60+
61+
## Licensing
62+
63+
See the LICENSE file for our project's licensing. We will ask you to confirm the licensing of your contribution.
64+
65+
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
name: Bug Report
3+
about: Create a report to help us improve iot-reference-esp32c3 by identifying any confirmed
4+
bugs. To discuss a potential bug, or pose other inquiries, please open an issue
5+
using the template linked below.
6+
title: "[BUG] <replace with your title>"
7+
labels: 'Type: Bug'
8+
assignees: ''
9+
10+
---
11+
12+
**Describe the bug**
13+
Please provide a clear and concise description explaining the bug.
14+
15+
**System information**
16+
- Hardware board: [ ... ]
17+
- IDE used: [ ... ]
18+
- Operating System: [ Windows | Linux | MacOS ]
19+
- Code version: (run ``git describe --tags`` to find it)
20+
- Project/Demo: [ mqtt_demo_mutual_auth | shadow_demo | custom application | etc... ]
21+
- If your project is a custom application, please add the relevant code snippet(s) in the section titled `"Code to reproduce bug"`.
22+
23+
**Expected behavior**
24+
A clear description of the expected behavior.
25+
26+
**Screenshots or console output**
27+
If appropriate, please paste the console output/error log explaining the issue. If possible, include the call stack.
28+
29+
**Steps to reproduce bug**
30+
Example:
31+
1. "I am using project [ ... ], and have configured with [ ... ]"
32+
2. "When run on [ ... ], I observed that [ ... ]"
33+
34+
**Code to reproduce bug**
35+
The code should be wrapped in the ``cpp`` tag in order to be displayed clearly. For example:
36+
37+
```cpp
38+
printf("Hello World")
39+
```
40+
41+
**Additional context**
42+
Include any additional context relevant to the issue here.
43+
44+
<!-- For general inquiries, please open an issue with the "Type: Question" tag using [this template](.github/ISSUE_TEMPLATE/general_inquiry.md). -->
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature Request
3+
about: Suggest a new feature for this repository.
4+
title: "[Feature Request] <replace with your title>"
5+
labels: Feature Request
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to an issue you've encountered? If so, please elaborate.**
11+
Please provide a clear and concise description of the problem. For example, "I'm always frustrated when [ ... ]".
12+
13+
**Describe the new feature request**
14+
Provide a clear and concise description of the feature you are proposing, as well as applicable use cases.
15+
16+
**Describe other alternatives you've considered**
17+
Provide a clear and concise description of any alternatives you've considered.
18+
19+
**Additional context**
20+
Add any additional information supporting the request here (screenshots, logs, references, etc.).
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: General Inquiry
3+
about: Generic issue for initiating discussion on any amazon-freertos topic (ex. questions,
4+
clarifications, concerns, etc.).
5+
title: "[General] <replace with your title>"
6+
labels: 'Type: Question'
7+
assignees: ''
8+
9+
---
10+
11+
**Briefly summarize the issue being raised**
12+
Please describe the topic requiring attention in this issue, as well some background on its current status.
13+
14+
**Describe the desired outcome**
15+
Identify the intended result of further discussion and eventual resolution of this issue.
16+
17+
**System information**
18+
- Hardware board: [ ... ]
19+
- IDE used: [ ... ]
20+
- Operating System: [ Windows | Linux | MacOS ]
21+
- Code version: (run ``git describe --tags`` to find it)
22+
- Project/Demo: [ mqtt_demo_mutual_auth | shadow_demo | custom application | etc... ]
23+
- If your project is a custom application, please add the relevant code snippet(s) in the section titled `"Code/Steps to reproduce the current status"`.
24+
25+
**References**
26+
Provide any screenshots, logs, etc. that may assist in providing a better understanding of the highlighted issue.
27+
28+
**Code/Steps to reproduce the current status**
29+
If applicable, provide concrete instructions or the relevant code snippet(s) for reproducing the current status. Code should be wrapped in the ``cpp`` tag in order to be displayed clearly. For example:
30+
```cpp
31+
printf("Hello World")
32+
```
33+
**Additional context**
34+
Add any remaining information not mentioned in the previous responses.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!--- Title -->
2+
3+
Description
4+
-----------
5+
<!--- Describe your changes in detail -->
6+
7+
Checklist:
8+
----------
9+
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
10+
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
11+
- [ ] I have tested my changes. No regression in existing tests.
12+
- [ ] My code is Linted.
13+
14+
15+
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

0 commit comments

Comments
 (0)