1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 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: |
- Thank you for your feedback, we have received your issue, Please wait patiently for a reply.
- * In order for us to understand your request as soon as possible, please provide detailed information、version or pictures.
- * If you haven't received a reply for a long time, you can [join our slack](https://s.apache.org/dolphinscheduler-slack) and send your question to channel `#troubleshooting`
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|