Skip to content

Commit 0e6f2e8

Browse files
authored
Revise the templates in .github (#772)
1 parent f109a2f commit 0e6f2e8

File tree

8 files changed

+265
-97
lines changed

8 files changed

+265
-97
lines changed
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
name: Question
3+
about: Submit a question about this SDK
4+
title: (Set a clear title describing your question)
5+
labels: 'question'
6+
assignees: ''
7+
---
8+
9+
## Description
10+
11+
(Describe your issue and goal here)
12+
13+
### Reproducible in:
14+
15+
```bash
16+
pip freeze | grep slack
17+
python --version
18+
sw_vers && uname -v # or `ver`
19+
```
20+
21+
#### The Slack SDK version
22+
23+
(Paste the output of `pip freeze | grep slack`)
24+
25+
#### Python runtime version
26+
27+
(Paste the output of `python --version`)
28+
29+
#### OS info
30+
31+
(Paste the output of `sw_vers && uname -v` on macOS/Linux or `ver` on Windows OS)
32+
33+
#### Steps to reproduce:
34+
35+
(Share the commands to run, source code, and project settings (e.g., setup.py))
36+
37+
1.
38+
2.
39+
3.
40+
41+
### Expected result:
42+
43+
(Tell what you expected to happen)
44+
45+
### Actual result:
46+
47+
(Tell what actually happened with logs, screenshots)
48+
49+
## Requirements (place an `x` in each of the `[ ]`)
50+
51+
(For general questions/issues about Slack API platform or its server-side, could you submit questions at https://my.slack.com/help/requests/new instead. :bow:)
52+
53+
* [ ] This is a question specific to this SDK project.
54+
* [ ] I've read and understood the [Contributing guidelines](https://github.com/slackapi/python-slackclient/blob/main/.github/contributing.md) and have done my best effort to follow them.
55+
* [ ] I've read and agree to the [Code of Conduct](https://slackhq.github.io/code-of-conduct).
56+
* [ ] I've searched for any related issues and avoided creating a duplicate issue [here](https://github.com/slackapi/python-slackclient/issues).
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Enhancement / Feature Request
3+
about: Submit an enhancement/feature request
4+
title: (Set a clear title describing your idea)
5+
labels: 'enhancement'
6+
assignees: ''
7+
---
8+
9+
## Description
10+
11+
(Describe your issue and goal here)
12+
13+
### Category (place an `x` in each of the `[ ]`)
14+
15+
* [ ] **slack.web.WebClient** (Web API client)
16+
* [ ] **slack.webhook.WebHookClient** (Incoming Webhook, response_url sender)
17+
* [ ] **slack.web.classes** (UI component builders)
18+
* [ ] **slack.rtm.RTMClient** (RTM client)
19+
20+
## Requirements (place an `x` in each of the `[ ]`)
21+
22+
* [ ] I've read and understood the [Contributing guidelines](https://github.com/slackapi/python-slackclient/blob/main/.github/contributing.md) and have done my best effort to follow them.
23+
* [ ] I've read and agree to the [Code of Conduct](https://slackhq.github.io/code-of-conduct).
24+
* [ ] I've searched for any related issues and avoided creating a duplicate issue [here](https://github.com/slackapi/python-slackclient/issues).
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Document
3+
about: Submit an issue on documents
4+
title: (Set a clear title describing your idea)
5+
labels: 'docs'
6+
assignees: ''
7+
---
8+
9+
## Description
10+
11+
(Describe your issue and goal here)
12+
13+
### The page URLs
14+
15+
* https://slack.dev/python-slackclient/
16+
17+
## Requirements (place an `x` in each of the `[ ]`)
18+
19+
* [ ] I've read and understood the [Contributing guidelines](https://github.com/slackapi/python-slackclient/blob/main/.github/contributing.md) and have done my best effort to follow them.
20+
* [ ] I've read and agree to the [Code of Conduct](https://slackhq.github.io/code-of-conduct).
21+
* [ ] I've searched for any related issues and avoided creating a duplicate issue [here](https://github.com/slackapi/python-slackclient/issues).

.github/ISSUE_TEMPLATE/04_bug.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
name: Bug
3+
about: Report the SDK bug
4+
title: (Set a clear title describing the issue)
5+
labels: 'bug'
6+
assignees: ''
7+
---
8+
9+
## Bug Report
10+
11+
(Filling out the following details about bugs will help us solve your issue sooner.)
12+
13+
### Reproducible in:
14+
15+
```bash
16+
pip freeze | grep slack
17+
python --version
18+
sw_vers && uname -v # or `ver`
19+
```
20+
21+
#### The Slack SDK version
22+
23+
(Paste the output of `pip freeze | grep slack`)
24+
25+
#### Python runtime version
26+
27+
(Paste the output of `python --version`)
28+
29+
#### OS info
30+
31+
(Paste the output of `sw_vers && uname -v` on macOS/Linux or `ver` on Windows OS)
32+
33+
#### Steps to reproduce:
34+
35+
(Share the commands to run, source code, and project settings (e.g., setup.py))
36+
37+
1.
38+
2.
39+
3.
40+
41+
### Expected result:
42+
43+
(Tell what you expected to happen)
44+
45+
### Actual result:
46+
47+
(Tell what actually happened with logs, screenshots)
48+
49+
## Requirements (place an `x` in each of the `[ ]`)
50+
51+
(For general questions/issues about Slack API platform or its server-side, could you submit questions at https://my.slack.com/help/requests/new instead. :bow:)
52+
53+
* [ ] This is a bug specific to this SDK project.
54+
* [ ] I've read and understood the [Contributing guidelines](https://github.com/slackapi/python-slackclient/blob/main/.github/contributing.md) and have done my best effort to follow them.
55+
* [ ] I've read and agree to the [Code of Conduct](https://slackhq.github.io/code-of-conduct).
56+
* [ ] I've searched for any related issues and avoided creating a duplicate issue [here](https://github.com/slackapi/python-slackclient/issues).

.github/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ If the contribution doesn't meet the above criteria, you may fail our automated
5252
3. :herb: Create a new branch and check it out.
5353
4. :crystal_ball: Make your changes and commit them locally. Magic happens here!
5454
5. :arrow_heading_up: Push your new branch to your fork. (e.g. `git push username fix-issue-16`).
55-
6. :inbox_tray: Open a Pull Request on github.com from your new branch on your fork to `master` in this
55+
6. :inbox_tray: Open a Pull Request on github.com from your new branch on your fork to `main` in this
5656
repository.
5757

5858
## Maintainers

.github/issue_template.md

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)