File size: 838 Bytes
61c2d32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: Remove needs-more-info label

on:
  issue_comment:
    types: [created]
  issues:
    types: [edited]

jobs:
  remove-needs-more-info-label:
    runs-on: ubuntu-latest
    # 1. issue_comment events could include PR comment, filter them out
    # 2. Only trigger action if event was produced by the original author
    if: ${{ !github.event.issue.pull_request && github.event.sender.login == github.event.issue.user.login }}
    steps:
      - name: Remove needs-more-info 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: needs-more-info
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}