Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add automation for needinfo requests #8159

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/needinfo-remove.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Remove needinfo label

on:
issue_comment:
types:
- created

jobs:
build:
runs-on: ubuntu-latest
if: |
github.event.comment.author_association != 'OWNER' &&
github.event.comment.author_association != 'COLLABORATOR'
steps:
- name: Remove needinfo label
uses: octokit/request-action@v2.x
continue-on-error: true
with:
route: DELETE /repos/:repository/issues/:issue/labels/:label
repository: ${{ github.repository }}
issue: ${{ github.event.issue.number }}
label: "status: needs information"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23 changes: 23 additions & 0 deletions .github/workflows/needinfo-stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Close old issues with the needinfo label

on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Close old issues with the needinfo tag
uses: dwieeb/needs-reply@v2
kewisch marked this conversation as resolved.
Show resolved Hide resolved
kewisch marked this conversation as resolved.
Show resolved Hide resolved
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-label: "status: needs information"
days-before-close: 30
close-message: >
Thank you for taking the time to report this issue. It looks like we haven't heard back
in a while, therefore we're closing this issue. If the problem persists in the latest
version please open a new issue and reference this one so we can follow up more
effectively.