1.4.13 #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: '🎉 LarkMap 发布 release {release_tag} 🎉' | |
notify_body: '## { title } <hr /> { body } <hr />' | |
notify_footer: '前往 [**LarkMap Releases**]({ release_url }) 查看完整信息.' | |
at_all: false |