2.4.32 #37
Workflow file for this run
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: DingTalk Release Notify | |
on: | |
workflow_dispatch: | |
release: | |
types: [published, edited] | |
jobs: | |
notify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: visiky/dingtalk-release-notify@main | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DING_TALK_TOKEN: ${{ secrets.DING_TALK_TOKENS}} | |
notify_title: '🎉 G2Plot 发布 release {release_tag} 🎉' | |
notify_body: '## { title }<hr /> ![](https://gw.alipayobjects.com/zos/antfincdn/AdgOtrq%26KF/G2Plot.png) <hr /> { body } <hr />' | |
notify_footer: '前往 [**G2Plot Releases**]({ release_url }) 查看完整信息.' | |
at_all: false |