Skip to content

Commit dac6de0

Browse files
Merge pull request #25757 from baude/needsinfo
Add autocomment for `needs-info` label
2 parents 1d89479 + 8db52f8 commit dac6de0

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Needs info labeler
2+
on:
3+
issues:
4+
types:
5+
- labeled
6+
jobs:
7+
add-comment:
8+
if: github.event.label.name == 'needs-info'
9+
runs-on: ubuntu-latest
10+
permissions:
11+
issues: write
12+
steps:
13+
- name: Add comment
14+
run: gh issue comment "$NUMBER" --body "$BODY"
15+
env:
16+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+
GH_REPO: ${{ github.repository }}
18+
NUMBER: ${{ github.event.issue.number }}
19+
BODY: |
20+
A reviewer has determined we need more information to understand the reported issue. A comment on what is missing should be provided. Be certain you:
21+
22+
* provide an exact reproducer where possible
23+
* verify you have provided all relevant information - minimum is `podman info`
24+
* answer any follow up questions
25+
26+
If no response to the `needs-info` is provided in 30 days, this issue may be closed by our stale bot.
27+
28+
For more information on reporting issues on this repository, consult our [issue guide](ISSUE.md).

0 commit comments

Comments
 (0)