1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- name: issue-robot
- on:
- issues:
- types: [opened]
- jobs:
- issueRobot:
- runs-on: ubuntu-latest
- steps:
- - name: "Checkout ${{ github.ref }}"
- uses: actions/checkout@v2
- with:
- persist-credentials: false
- submodules: true
- - name: "Translation into English in issue"
- uses: ./.github/actions/translate-on-issue
- with:
- translate-title: true
- translate-body: true
- - name: "Comment in issue"
- uses: ./.github/actions/comment-on-issue
- with:
- message: "Hi:\n* Thank you for your feedback, we have received your issue, Please wait patiently for a reply.\n* In order for us to understand your request as soon as possible, please provide detailed information、version or pictures.\n* If you haven't received a reply for a long time, you can subscribe to the developer's email,Mail subscription steps reference https://dolphinscheduler.apache.org/en-us/community/development/subscribe.html ,Then write the issue URL in the email content and send question to dev@dolphinscheduler.apache.org."
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|