megatrace_nccl.patch中存在错误修改 #4
This file contains hidden or 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: Notify New Issue to Feishu | |
| on: | |
| issues: | |
| types: [opened,edited] | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send to Feishu | |
| run: | | |
| curl -X POST ${{ secrets.FEISHU_WEBHOOK_URL }} \ | |
| -H 'Content-Type: application/json' \ | |
| -d '{ | |
| "msg_type": "text", | |
| "content": { | |
| "text": "🔔 New GitHub Issue: [${{ github.event.issue.title }}](${{ github.event.issue.html_url }})" | |
| } | |
| }' |