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

Commit 236ad79

Browse files
authored
Update .github
1 parent 3963faf commit 236ad79

File tree

4 files changed

+33
-5
lines changed

4 files changed

+33
-5
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,14 @@ If applicable, add screenshots to help explain your problem.
3636
Please ensure to specify the following:
3737

3838
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
39-
* Board Core Version (e.g. Arduino SAMDUE core v1.6.12, ESP32 core v2.0.5, ESP8266 core v3.0.2, ArduinoCore-mbed v3.4.1, etc.)
39+
* Board Core Version (e.g. Arduino SAMDUE core v1.6.12, ESP32 core v2.0.6, ESP8266 core v3.0.2, ArduinoCore-mbed v3.4.1, etc.)
4040
* Contextual information (e.g. what you were trying to achieve)
4141
* Simplest possible steps to reproduce
4242
* Anything that might be relevant in your opinion, such as:
4343
* Operating system (Windows, Ubuntu, etc.) and the output of `uname -a`
4444
* Network configuration
4545

46+
Please be educated, civilized and constructive. 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.
4647

4748
### Example
4849

@@ -51,7 +52,7 @@ Arduino IDE version: 1.8.19
5152
RASPBERRY_PI_PICO board
5253
ArduinoCore-mbed v3.4.1
5354
OS: Ubuntu 20.04 LTS
54-
Linux xy-Inspiron-3593 5.15.0-52-generic #58~20.04.1-Ubuntu SMP Thu Oct 13 13:09:46 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
55+
Linux xy-Inspiron-3593 5.15.0-56-generic #62~20.04.1-Ubuntu SMP Tue Nov 22 21:24:20 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
5556
5657
Context:
5758
I encountered a crash while trying to use the library

.github/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ markComment: >
2424
for your contributions.
2525
2626
unmarkComment: >
27-
[STALE_CLR] This issue has been removed from the stale queue. Please ensure activity to keep it opening the future.
27+
[STALE_CLR] This issue has been removed from the stale queue. Please ensure activity to keep it openin the future.
2828
2929
closeComment: >
3030
[STALE_DEL] This stale issue has been automatically closed. Thank you for your contributions.

.github/workflows/auto-github-actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ jobs:
44
check-bats-version:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v3
8-
- uses: actions/setup-node@v3
7+
- uses: actions/checkout@v2
8+
- uses: actions/setup-node@v2
99
with:
1010
node-version: '14'
1111
- run: npm install -g bats

.github/workflows/stale.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
2+
#
3+
# You can adjust the behavior by modifying this file.
4+
# For more information, see:
5+
# https://github.com/actions/stale
6+
name: Mark stale issues and pull requests
7+
8+
on:
9+
schedule:
10+
- cron: '20 20 * * *'
11+
12+
jobs:
13+
stale:
14+
15+
runs-on: ubuntu-latest
16+
permissions:
17+
issues: write
18+
pull-requests: write
19+
20+
steps:
21+
- uses: actions/stale@v3
22+
with:
23+
repo-token: ${{ secrets.GITHUB_TOKEN }}
24+
stale-issue-message: 'Stale issue message'
25+
stale-pr-message: 'Stale pull request message'
26+
stale-issue-label: 'no-issue-activity'
27+
stale-pr-label: 'no-pr-activity'

0 commit comments

Comments
 (0)