Skip to content

Commit

Permalink
Action to manage needinfo issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kewisch committed Apr 1, 2024
1 parent fe3c186 commit ec0ca19
Show file tree
Hide file tree
Showing 2 changed files with 46 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/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: needinfo
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21 changes: 21 additions & 0 deletions .github/workflows/needinfo-stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Close old issues with the needinfo tag

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: needinfo
close-message: >
It looks like we haven't heard back on this issue, therefore we are
closing this issue. If this problem persists in the latest version
of ical.js, please re-open this issue.

0 comments on commit ec0ca19

Please sign in to comment.