mirror of
https://github.com/containers/podman.git
synced 2025-05-17 23:26:08 +08:00
Merge pull request #25757 from baude/needsinfo
Add autocomment for `needs-info` label
This commit is contained in:
28
.github/workflows/needs-info-labeler.yaml
vendored
Normal file
28
.github/workflows/needs-info-labeler.yaml
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
name: Needs info labeler
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- labeled
|
||||
jobs:
|
||||
add-comment:
|
||||
if: github.event.label.name == 'needs-info'
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
issues: write
|
||||
steps:
|
||||
- name: Add comment
|
||||
run: gh issue comment "$NUMBER" --body "$BODY"
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GH_REPO: ${{ github.repository }}
|
||||
NUMBER: ${{ github.event.issue.number }}
|
||||
BODY: |
|
||||
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:
|
||||
|
||||
* provide an exact reproducer where possible
|
||||
* verify you have provided all relevant information - minimum is `podman info`
|
||||
* answer any follow up questions
|
||||
|
||||
If no response to the `needs-info` is provided in 30 days, this issue may be closed by our stale bot.
|
||||
|
||||
For more information on reporting issues on this repository, consult our [issue guide](ISSUE.md).
|
Reference in New Issue
Block a user