mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
26 lines
1.1 KiB
YAML
26 lines
1.1 KiB
YAML
## Rule description: Add comments when an issue is marked as help wanted
|
|
|
|
name: Issue Labeled
|
|
|
|
on:
|
|
issues:
|
|
types: [labeled]
|
|
|
|
env: # Set environment variables
|
|
TZ: Asia/Shanghai # Time zone (setting the time zone allows the 'Last Updated' on the page to use the time zone)
|
|
|
|
jobs:
|
|
reply-labeled:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: contribution welcome
|
|
if: github.event.label.name == 'help wanted'
|
|
uses: actions-cool/issues-helper@v3
|
|
with:
|
|
actions: "create-comment, remove-labels"
|
|
# token: ${{ secrets.GF_TOKEN }}
|
|
issue-number: ${{ github.event.issue.number }}
|
|
body: |
|
|
Hello @${{ github.event.issue.user.login }}. We like your proposal/feedback and would appreciate a contribution via a Pull Request by you or another community member. We thank you in advance for your contribution and are looking forward to reviewing it!
|
|
你好 @${{ github.event.issue.user.login }}。我们喜欢您的提案/反馈,并希望您或其他社区成员通过拉取请求做出贡献。我们提前感谢您的贡献,并期待对其进行审查。
|