Skip to content

Make it more clear that the first folder in the list is the target folder #748

Make it more clear that the first folder in the list is the target folder

Make it more clear that the first folder in the list is the target folder #748

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/[email protected]
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 }}