needsinfohelper.yaml 482 B

12345678910111213
  1. name: Remove Labels
  2. on: [issue_comment]
  3. jobs:
  4. remove_labels:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions-ecosystem/action-remove-labels@v1
  8. if: ${{ ! startsWith(github.event.comment.body, 'This issue has been marked as "needs info" 4 weeks ago.') && ! startsWith(github.event.comment.body, 'This bug report did not receive an update in the last 4 weeks.')}}
  9. with:
  10. labels: 'needs info'
  11. github_token: ${{ secrets.GITHUB_TOKEN }}