Skip to content

Commit fe4f33f

Browse files
committed
Adding label configuration
1 parent eb86902 commit fe4f33f

File tree

2 files changed

+79
-0
lines changed

2 files changed

+79
-0
lines changed

.github/label-commenter-config.yml

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# Configuration for Label Commenter - https://github.com/peaceiris/actions-label-commenter
2+
labels:
3+
- name: needs-triaging
4+
labeled:
5+
issue:
6+
body: |
7+
@{{ issue.user.login }}, thank you for creating this issue. We will troubleshoot it as soon as we can.
8+
9+
---
10+
<details>
11+
<summary>Info for maintainers</summary>
12+
<div>
13+
<br>
14+
<p>
15+
Triage this issue by using labels.
16+
</p>
17+
<p>
18+
If information is missing, add a helpful comment and then <code>I-issue-template</code> label.
19+
</p>
20+
<p>
21+
If the issue is a question, add the <code>I-question</code> label.
22+
</p>
23+
<p>
24+
If the issue is valid but there is no time to troubleshoot it, consider adding the <code>help wanted</code> label.
25+
</p>
26+
<p>
27+
After troubleshooting the issue, please add the <code>R-awaiting answer</code> label.
28+
</p>
29+
<p>
30+
Thank you!
31+
</p>
32+
</div>
33+
</details>
34+
- name: I-issue-template
35+
labeled:
36+
issue:
37+
body: |
38+
Hi, @{{ issue.user.login }}.
39+
Please follow the issue template, we need more information to reproduce the issue.
40+
41+
Either a complete code snippet and URL/HTML (if more than one file is needed, provide a GitHub repo and instructions to run the code), the specific versions used, or a more detailed description to help us understand the issue.
42+
43+
Note: If you cannot share your code and URL/HTML, any complete code snippet and URL/HTML that reproduces the issue is good enough.
44+
45+
Reply to this issue when all information is provided, thank you.
46+
- name: I-question
47+
labeled:
48+
issue:
49+
body: |
50+
💬 Please ask questions at:
51+
* 📫 The [Selenium user group](https://groups.google.com/forum/#!forum/selenium-users)
52+
* 📮 [StackOverflow](https://stackoverflow.com/questions/tagged/selenium)
53+
* 🗣 Our [IRC/Slack/Matrix channels](https://www.selenium.dev/support/) where the community can help you as well
54+
action: close
55+
- name: help wanted
56+
labeled:
57+
issue:
58+
body: |
59+
This issue is looking for contributors.
60+
61+
Please comment below or reach out to us through our [IRC/Slack/Matrix channels](https://www.selenium.dev/support/) if you are interested.

.github/workflows/label-commenter.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Configuration for Label Commenter - https://github.com/peaceiris/actions-label-commenter
2+
name: Label Commenter
3+
4+
on:
5+
issues:
6+
types: [ labeled ]
7+
8+
permissions:
9+
contents: read
10+
issues: write
11+
12+
jobs:
13+
comment:
14+
runs-on: ubuntu-20.04
15+
steps:
16+
- uses: actions/checkout@v3
17+
- name: Label Commenter
18+
uses: peaceiris/actions-label-commenter@v1

0 commit comments

Comments
 (0)