Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit dd06c1b

Browse files
authored
Update .github
1 parent 7451e3c commit dd06c1b

File tree

7 files changed

+195
-23
lines changed

7 files changed

+195
-23
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+96-19
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
23
name: Bug report
34
about: Create a report to help us improve
45
title: ''
@@ -7,32 +8,108 @@ assignees: ''
78

89
---
910

10-
**Describe the bug**
11+
### Describe the bug
12+
1113
A clear and concise description of what the bug is.
1214

13-
**To Reproduce**
14-
Steps to reproduce the behavior:
15-
1. Go to '...'
16-
2. Click on '....'
17-
3. Scroll down to '....'
18-
4. See error
15+
### Steps to Reproduce
16+
17+
Steps to reproduce the behavior. Including the [MRE](https://stackoverflow.com/help/minimal-reproducible-example) sketches
18+
19+
### Expected behavior
1920

20-
**Expected behavior**
2121
A clear and concise description of what you expected to happen.
2222

23-
**Screenshots**
23+
### Actual behavior
24+
25+
A clear and concise description of what you expected to happen.
26+
27+
### Debug and AT-command log (if applicable)
28+
29+
A clear and concise description of what you expected to happen.
30+
31+
### Screenshots
32+
2433
If applicable, add screenshots to help explain your problem.
2534

26-
**Desktop (please complete the following information):**
27-
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
35+
### Information
36+
37+
Please report bugs in AsyncESP32_SC_W6100_Manager if you find them.
38+
39+
However, before reporting a bug please check through the following:
40+
41+
* [Existing Open Issues](https://github.com/khoih-prog/AsyncESP32_SC_W6100_Manager/issues) - someone might have already encountered this.
42+
43+
If you don't find anything, please [open a new issue](https://github.com/khoih-prog/AsyncESP32_SC_W6100_Manager/issues/new).
44+
45+
---
46+
47+
### How to submit a bug report
48+
49+
Please ensure to specify the following:
50+
51+
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
52+
* Board Type (e.g. ESP32S3_DEV, ESP32S2_DEV, ESP32C3_DEV)
53+
* Board Core Version (e.g. ESP32 core v2.0.6)
54+
* Contextual information (e.g. what you were trying to achieve)
55+
* Simplest possible steps to reproduce
56+
* Anything that might be relevant in your opinion, such as:
57+
* Operating system (Windows, Ubuntu, etc.) and the output of `uname -a`
58+
* Network configuration
59+
3060

31-
**Smartphone (please complete the following information):**
32-
- Device: [e.g. iPhone6]
33-
- OS: [e.g. iOS8.1]
34-
- Browser [e.g. stock browser, safari]
35-
- Version [e.g. 22]
61+
Please be educated, civilized and constructive as you've always been. Disrespective posts against [GitHub Code of Conduct](https://docs.github.com/en/site-policy/github-terms/github-event-code-of-conduct) will be ignored and deleted.
62+
63+
---
64+
65+
### Example
66+
67+
```
68+
Arduino IDE version: 1.8.19
69+
ESP32S3_DEV board
70+
ESP32 core v2.0.6
71+
OS: Ubuntu 20.04 LTS
72+
Linux xy-Inspiron-3593 5.15.0-58-generic #64~20.04.1-Ubuntu SMP Fri Jan 6 16:42:31 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
73+
74+
Context:
75+
I encountered a crash while using this library
76+
Steps to reproduce:
77+
1. ...
78+
2. ...
79+
3. ...
80+
4. ...
81+
```
82+
83+
### Additional context
3684

37-
**Additional context**
3885
Add any other context about the problem here.
86+
87+
---
88+
89+
### Sending Feature Requests
90+
91+
Feel free to post feature requests. It's helpful if you can explain exactly why the feature would be useful.
92+
93+
There are usually some outstanding feature requests in the [existing issues list](https://github.com/khoih-prog/AsyncESP32_SC_W6100_Manager/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement), feel free to add comments to them.
94+
95+
---
96+
97+
### Sending Pull Requests
98+
99+
Pull Requests with changes and fixes are also welcome!
100+
101+
Please use the `astyle` to reformat the updated library code as follows (demo for Ubuntu Linux)
102+
103+
1. Change directory to the library GitHub
104+
105+
```
106+
xy@xy-Inspiron-3593:~$ cd Arduino/xy/AsyncESP32_SC_W6100_Manager_GitHub/
107+
xy@xy-Inspiron-3593:~/Arduino/xy/AsyncESP32_SC_W6100_Manager_GitHub$
108+
```
109+
110+
2. Issue astyle command
111+
112+
```
113+
xy@xy-Inspiron-3593:~/Arduino/xy/AsyncESP32_SC_W6100_Manager_GitHub$ bash utils/restyle.sh
114+
```
115+

.github/ISSUE_TEMPLATE/feature_request.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,18 @@ assignees: ''
77

88
---
99

10-
**Is your feature request related to a problem? Please describe.**
10+
### Is your feature request related to a problem? Please describe.
11+
1112
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
1213

13-
**Describe the solution you'd like**
14+
### Describe the solution you'd like
15+
1416
A clear and concise description of what you want to happen.
1517

16-
**Describe alternatives you've considered**
18+
### Describe alternatives you've considered
19+
1720
A clear and concise description of any alternative solutions or features you've considered.
1821

19-
**Additional context**
22+
### Additional context
23+
2024
Add any other context or screenshots about the feature request here.

.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# See: https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates#about-the-dependabotyml-file
2+
version: 2
3+
4+
updates:
5+
# Configure check for outdated GitHub Actions actions in workflows.
6+
# See: https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-dependabot
7+
- package-ecosystem: github-actions
8+
directory: / # Check the repository's workflows under /.github/workflows/
9+
schedule:
10+
interval: daily

.github/stale.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Configuration for probot-stale - https://github.com/probot/stale
2+
3+
daysUntilStale: 60
4+
daysUntilClose: 14
5+
limitPerRun: 30
6+
staleLabel: stale
7+
exemptLabels:
8+
- pinned
9+
- security
10+
- "to be implemented"
11+
- "for reference"
12+
- "move to PR"
13+
- "enhancement"
14+
15+
only: issues
16+
onlyLabels: []
17+
exemptProjects: false
18+
exemptMilestones: false
19+
exemptAssignees: false
20+
21+
markComment: >
22+
[STALE_SET] This issue has been automatically marked as stale because it has not had
23+
recent activity. It will be closed in 14 days if no further activity occurs. Thank you
24+
for your contributions.
25+
26+
unmarkComment: >
27+
[STALE_CLR] This issue has been removed from the stale queue. Please ensure activity to keep it opening the future.
28+
29+
closeComment: >
30+
[STALE_DEL] This stale issue has been automatically closed. Thank you for your contributions.
31+
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: auto-github-actions
2+
on: [push]
3+
jobs:
4+
check-bats-version:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v3
8+
- uses: actions/setup-node@v3
9+
with:
10+
node-version: '14'
11+
- run: npm install -g bats
12+
- run: bats -v
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Report Size Deltas
2+
3+
on:
4+
schedule:
5+
- cron: '*/5 * * * *'
6+
7+
jobs:
8+
report:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Comment size deltas reports to PRs
13+
uses: arduino/report-size-deltas@v1
14+
with:
15+
# The name of the workflow artifact created by the "Compile Examples" workflow
16+
sketches-reports-source: sketches-reports

.github/workflows/spell-check.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Spell Check
2+
3+
on:
4+
pull_request:
5+
push:
6+
schedule:
7+
# run every Tuesday at 3 AM UTC
8+
- cron: "0 3 * * 2"
9+
workflow_dispatch:
10+
repository_dispatch:
11+
12+
jobs:
13+
spellcheck:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v3
19+
20+
# See: https://github.com/codespell-project/actions-codespell/blob/master/README.md
21+
- name: Spell check
22+
uses: codespell-project/actions-codespell@master

0 commit comments

Comments
 (0)