Error creating mapping relationship for table field ‘time’ type in cdcsource task creation,string to time(0) #2
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
name: Issue Check | |
on: | |
issues: | |
types: [ labeled ] | |
jobs: | |
reply-help: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Need Provide Reproduce Steps | |
if: github.event.label.name == 'Need Reproduce' | |
uses: actions-cool/[email protected] | |
with: | |
actions: 'create-comment' | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}, we need you to provide reproduction steps so that we can help you troubleshoot the problem. Issues are marked \`Need Reproduce\`. | |
你好 @${{ github.event.issue.user.login }}, 我们需要你提供复现步骤以便于我们帮你排查问题,Issues 标注为 \`Need Reproduce\` 。 | |
- name: Action Duplicate Issue | |
if: github.event.label.name == 'Duplicate' | |
uses: actions-cool/[email protected] | |
with: | |
actions: 'create-comment' | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}, thank you for your feedback, but this issue has been reported before. You can search for keywords in the Issue list to view it. Issues are marked as \`Duplicate\`. | |
你好 @${{ github.event.issue.user.login }}, 感谢你的反馈, 但是此问题已经被反馈过了,你可以在 Issue 列表中搜索关键字来查看, Issues 标注为 \`Duplicate\` 。 | |
- name: Action Fixed Issue | |
if: github.event.label.name == 'Fixed' | |
uses: actions-cool/[email protected] | |
with: | |
actions: 'create-comment' | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}, thank you for your feedback, but this issue has been fixed. You can search for keywords in the Issue list to view it. Issues are marked as \`Fixed\`. | |
你好 @${{ github.event.issue.user.login }}, 感谢你的反馈, 但是此问题已经被修复了,你可以在 Issue 列表中搜索关键字来查看, Issues 标注为 \`Fixed\` 。 | |
- name: Action Supported Issue | |
if: github.event.label.name == 'Supported' | |
uses: actions-cool/[email protected] | |
with: | |
actions: 'create-comment' | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}, thank you for your suggestion, but this function has been implemented. You can search for keywords in the Issue list to view it. Issues are marked \`Supported\` | |
你好 @${{ github.event.issue.user.login }}, 感谢你的建议, 但是此功能已经实现了,你可以在 Issue 列表中搜索关键字来查看, Issues 标注为 \`Supported\` 。 | |
- name: Action Wont Fix Issue | |
if: github.event.label.name == 'Wont Fix' | |
uses: actions-cool/[email protected] | |
with: | |
actions: 'create-comment' | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}, thank you for your feedback, but this issue will not be fixed. You can search for keywords in the Issue list to view it. Issues are marked \`Wont Fix\` | |
你好 @${{ github.event.issue.user.login }}, 感谢你的反馈, 但是此问题不会被修复,你可以在 Issue 列表中搜索关键字来查看, Issues 标注为 \`Wont Fix\` 。 |