Skip to content

Commit f68bde1

Browse files
authored
added issue template; added stale bot (#341)
1 parent fa0942c commit f68bde1

File tree

4 files changed

+107
-0
lines changed

4 files changed

+107
-0
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
name: "\U0001F41B Report an issue"
3+
about: A feature is not working as expected.
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
### New Issue Checklist
11+
<!-- Please check the following boxes [ ] -> [x] before submitting your issue. Click the "Preview" tab for better readability. Thanks for reporting this issue! -->
12+
13+
- [ ] I am not disclosing a [vulnerability](https://github.com/parse-community/parse-server/blob/master/SECURITY.md).
14+
- [ ] I am not just asking a [question](https://github.com/parse-community/.github/blob/master/SUPPORT.md).
15+
- [ ] I have searched through [existing issues](https://github.com/parse-community/Parse-SDK-dotNET/issues?q=is%3Aissue).
16+
- [ ] I can reproduce the issue with the latest versions of [Parse Server](https://github.com/parse-community/parse-server/releases) and the [Parse .NET SDK](https://github.com/parse-community/Parse-SDK-dotNET/releases). <!-- We don't investigate issues for outdated releases. -->
17+
18+
### Issue Description
19+
<!-- What is the specific issue? -->
20+
21+
### Steps to reproduce
22+
<!-- How can someone else reproduce the issue? -->
23+
24+
### Actual Outcome
25+
<!-- What outcome, for example query result, did you get? -->
26+
27+
### Expected Outcome
28+
<!-- What outcome, for example query result, did you expect? -->
29+
30+
### Environment
31+
<!-- Be specific with versions, don't use "latest" or semver ranges like "~x.y.z" or "^x.y.z". -->
32+
33+
Server
34+
- Parse Server version: `FILL_THIS_OUT`
35+
- Operating system: `FILL_THIS_OUT`
36+
- Local or remote host (AWS, Azure, Google Cloud, Heroku, Digital Ocean, etc): `FILL_THIS_OUT`
37+
38+
Database
39+
- System (MongoDB or Postgres): `FILL_THIS_OUT`
40+
- Database version: `FILL_THIS_OUT`
41+
- Local or remote host (MongoDB Atlas, mLab, AWS, Azure, Google Cloud, etc): `FILL_THIS_OUT`
42+
43+
Client
44+
- Parse .NET SDK version: `FILL_THIS_OUT`
45+
46+
### Logs
47+
<!-- Include relevant logs here. Turn on additional logging by configuring VERBOSE=1 in your environment. -->
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: "\U0001F4A1 Request a feature"
3+
about: Suggest new functionality or an enhancement of existing functionality.
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 🙋🏽‍♀️ Getting help with code
4+
url: https://stackoverflow.com/questions/tagged/parse-platform+parse-dotnet-sdk
5+
about: Get help with code-level questions on Stack Overflow.
6+
- name: 🙋 Getting general help
7+
url: https://community.parseplatform.org/c/client-sdks/net-sdk
8+
about: Get help with other questions on our Community Forum.

.github/stale.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 45
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 7
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- accepted
8+
- pinned
9+
- security
10+
- good first task
11+
- up-for-grabs
12+
- enhancement
13+
- help wanted
14+
- bug
15+
- greenkeeper
16+
- feature
17+
- needs more info
18+
- discussion
19+
- question
20+
- pr-submitted
21+
- proposal
22+
# Label to use when marking an issue as stale
23+
staleLabel: stale
24+
# Limit to only `issues` not `pulls`
25+
only: issues
26+
# Comment to post when marking an issue as stale. Set to `false` to disable
27+
markComment: >
28+
This issue has been automatically marked as stale because it has not had
29+
recent activity. It will be closed if no further activity occurs. Thank you
30+
for your contributions.
31+
# Comment to post when closing a stale issue. Set to `false` to disable
32+
closeComment: false

0 commit comments

Comments
 (0)