forked from alibaba/hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
371b021
commit dd73a77
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Comment When Needs More Info Label Added | ||
|
||
on: | ||
issues: | ||
types: [labeled] | ||
|
||
jobs: | ||
create-comment: | ||
runs-on: ubuntu-latest | ||
if: github.event.label.name == 'needs more info' | ||
steps: | ||
- name: Create comment | ||
uses: actions-cool/issues-helper@v3 | ||
with: | ||
actions: 'create-comment' | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
issue-number: ${{ github.event.issue.number }} | ||
body: | | ||
Hi, ${{ github.event.issue.user.login }}. | ||
It seems that this issue is a bit vague and lacks some necessary information. | ||
看起来这条 issue 描述得有些模糊,缺少一些必要的信息。 |