Browse Source

ci: create issue-remove-inactive.yml (#29353)

pull/29450/head
xrkffgg 4 years ago
committed by GitHub
parent
commit
7870fed76f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      .github/workflows/issue-remove-inactive.yml

19
.github/workflows/issue-remove-inactive.yml

@ -0,0 +1,19 @@
name: Issue Remove Inactive
on:
issues:
types: [edited, reopened]
issue_comment:
types: [created, edited]
jobs:
remove-inactive:
runs-on: ubuntu-latest
steps:
- name: remove inactive
if: github.event.issue.state == 'open'
uses: actions-cool/issues-helper@v1.2
with:
actions: 'remove-labels'
issue-number: ${{ github.event.issue.number }}
labels: 'Inactive, needs-more-info'
Loading…
Cancel
Save