mirror of
https://github.com/FreeTubeApp/FreeTube
synced 2024-12-13 21:19:45 +01:00
c349d63985
* Update autoLabelDuplicate.yml * remove empty lines
17 lines
594 B
YAML
17 lines
594 B
YAML
name: "Label Duplicate"
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check Comment Author
|
|
if: github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER'
|
|
uses: Amwam/issue-comment-action@v1.3.1
|
|
with:
|
|
keywords: '["duplicate of #", "duplicate of https://github.com/FreeTubeApp/FreeTube/issues/", "duplicate of https://github.com/FreeTubeApp/FreeTube/pulls/"]'
|
|
labels: '["U: duplicate"]'
|
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|