ant-design/.github/workflows/issue-remove-inactive.yml
xrkffgg 96648754a0
ci: unite action version (#32537)
* ci: unite action version

* Update verify-package-version.yml

* Update issue-open-check.yml

* Update preview-start.yml

* Update preview-deploy.yml

* Update pr-open-check.yml

* Update issue-remove-inactive.yml
2021-10-19 19:36:22 +08:00

20 lines
501 B
YAML

name: Issue Remove Inactive
on:
issues:
types: [edited]
issue_comment:
types: [created, edited]
jobs:
issue-remove-inactive:
runs-on: ubuntu-latest
steps:
- name: remove inactive
if: github.event.issue.state == 'open' && github.actor == github.event.issue.user.login
uses: actions-cool/issues-helper@v2
with:
actions: 'remove-labels'
issue-number: ${{ github.event.issue.number }}
labels: 'Inactive, needs-more-info'