File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change
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).
You can’t perform that action at this time.
0 commit comments