Skip to content

Commit e86b100

Browse files
authored
Tempalte and stale action update (#56)
* added a github action to close stale issues * increased stale range
1 parent 51c9008 commit e86b100

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

.github/ISSUE_TEMPLATE/---bug-report.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ assignees: ''
99

1010
Confirm by changing [ ] to [x] below to ensure that it's a bug:
1111
- [ ] I've searched for [previous similar issues](https://github.com/aws/aws-iot-device-sdk-python-v2/issues) and didn't find any solution
12-
12+
13+
**Known Issue**
14+
- [ ] I'm using ATS data type endpoint: the endpoint should look like `<prefix>-ats.iot.<region>.amazonaws.com`
15+
1316
**Describe the bug**
1417
A clear and concise description of what the bug is.
1518

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: "\U0001F4AC Questions / Help"
3+
about: If you have questions, please check AWS Forums or StackOverflow
4+
title: ''
5+
labels: guidance, needs-triage
6+
assignees: ''
7+
8+
---
9+
10+
Confirm by changing [ ] to [x] below:
11+
- [ ] I've searched for [previous similar issues](https://github.com/aws/aws-iot-device-sdk-pyhton-v2/issues) and didn't find any solution
12+
13+
**Known Issue**
14+
- [ ] I'm using ATS data type endpoint: the endpoint should look like `<prefix>-ats.iot.<region>.amazonaws.com`
15+
16+
**Platform/OS/Device**
17+
What are you running the sdk on?
18+
19+
**Describe the question**

.github/workflows/stale-issue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ name: "Close stale issues"
33
# Controls when the action will run.
44
on:
55
schedule:
6-
- cron: "*/30 * * * *"
6+
- cron: "*/60 * * * *"
77

88
jobs:
99
cleanup:
1010
runs-on: ubuntu-latest
1111
name: Stale issue job
1212
steps:
13-
- uses: aws-actions/stale-issue-cleanup@v2
13+
- uses: aws-actions/stale-issue-cleanup@v3
1414
with:
1515
# Setting messages to an empty string will cause the automation to skip
1616
# that category

0 commit comments

Comments
 (0)