Skip to content

Commit

Permalink
Updates no-response workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
crsh authored Aug 20, 2024
1 parent 9309b7d commit c045234
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 17 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/needs-reply.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Close old issues that need reply

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

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Close old issues that need reply
uses: dwieeb/needs-reply@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-label: more-information-needed
close-message: >
This issue has been automatically closed because there has been no response
to our request for more information from OP. With the information that is
currently in the issue, we don't have enough information to take action.
Please reach out if you have or find the answers we need so that we can
investigate further.
17 changes: 0 additions & 17 deletions .github/workflows/no-response.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/remove-needs-reply.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Remove more-information-needed 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 more-information-needed 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: more-information-needed
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit c045234

Please sign in to comment.