Skip to content

Commit

Permalink
Add automation for needinfo requests (#8159)
Browse files Browse the repository at this point in the history
  • Loading branch information
kewisch authored Sep 23, 2024
1 parent a1c0b96 commit 0bde0ae
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
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/[email protected]
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
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.

0 comments on commit 0bde0ae

Please sign in to comment.