Skip to content

Commit 19cd580

Browse files
authored
Merge pull request #3090 from krmahadevan/add_github_workflows
Adding issue management workflows
2 parents 3308b3c + 40c703b commit 19cd580

File tree

2 files changed

+53
-0
lines changed

2 files changed

+53
-0
lines changed

.github/label-commenter-config.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Configuration for Label Commenter - https://github.com/peaceiris/actions-label-commenter
2+
labels:
3+
- name: needs-sample
4+
labeled:
5+
issue:
6+
body: |
7+
Hi, @{{ issue.user.login }}.
8+
We need more information to reproduce the issue.
9+
10+
Please help share a [Minimal, Reproducible Example](https://stackoverflow.com/help/minimal-reproducible-example) that can be used to recreate the issue.
11+
12+
In addition to sharing a sample, please also add the following details:
13+
14+
* TestNG version being used.
15+
* JDK version being used.
16+
* How was the test run (IDE/Build Tools)?
17+
* How does your build file (`pom.xml` | `build.gradle` | `build.gradle.kts`) look like ?
18+
19+
It would be better if you could share a sample project that can be directly used to reproduce the problem.
20+
Reply to this issue when all information is provided, thank you.
21+
- name: question
22+
labeled:
23+
issue:
24+
body: |
25+
💬 Please ask questions at:
26+
* 📫 The [TestNG user group](https://groups.google.com/forum/#!forum/testng-users)
27+
* 📮 [StackOverflow](https://stackoverflow.com/questions/tagged/testng)
28+
action: close
29+
- name: help-wanted
30+
labeled:
31+
issue:
32+
body: |
33+
This issue is looking for contributors.
34+
35+
Please comment below if you are interested.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Label Commenter
2+
3+
on:
4+
issues:
5+
types: [labeled]
6+
7+
permissions:
8+
contents: read
9+
issues: write
10+
11+
jobs:
12+
comment:
13+
if: github.repository_owner == 'testng-team'
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Label Commenter
18+
uses: peaceiris/actions-label-commenter@v1

0 commit comments

Comments
 (0)