mirror of
https://github.com/ok-oldking/ok-wuthering-waves.git
synced 2025-06-05 08:25:28 +00:00
24 lines
656 B
YAML
24 lines
656 B
YAML
name: Remove needs-reply 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 needs-reply label
|
|
uses: octokit/request-action@v2.x
|
|
continue-on-error: true
|
|
with:
|
|
route: DELETE /repos/:repository/issues/:issue/labels/:label
|
|
repository: ${{ github.repository }}
|
|
issue: ${{ github.event.issue.number }}
|
|
label: needs-reply
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |