Skip to content

Commit

Permalink
ci: Update action script to remove inactive labels (#3013)
Browse files Browse the repository at this point in the history
  • Loading branch information
lingcoder authored Oct 11, 2023
1 parent ca7450f commit 81f3ad0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/issue-remove-inactive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: remove inactive
if: github.event.issue.state == 'open' && github.actor == github.event.issue.user.login
if: github.event.issue.state == 'open'
uses: actions-cool/issues-helper@v3
with:
actions: 'remove-labels'
issue-number: ${{ github.event.issue.number }}
labels: 'inactive'
labels: 'inactive'

0 comments on commit 81f3ad0

Please sign in to comment.