chore(workflow): Use dengfuping/monorepo-release-helper@v1 #10
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
# Current release process: | |
# 1. `pnpm run publish` will generate new tags and publish to npm | |
# 4. Then the new tags will trigger this current action | |
# 5. The action will generate a new release, and publish DingDing notification at the same time | |
name: Release Helper | |
on: | |
push: | |
tags: | |
- '*' | |
permissions: | |
contents: read | |
jobs: | |
release-helper: | |
permissions: | |
# use actions-cool/release-helper to create releases | |
# ref: https://github.com/actions-cool/release-helper | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Release Oceanbase Design | |
uses: dengfuping/monorepo-release-helper@v1 | |
with: | |
trigger: 'tag' | |
changelogs: 'docs/design/design-CHANGELOG.md, docs/ui/ui-CHANGELOG.md, docs/charts/charts-CHANGELOG.md, docs/codemod/codemod-CHANGELOG.md' | |
branch: 'master' | |
dingding-token: ${{ secrets.DINGDING_BOT_TOKEN }} | |
msg-title: '# OceanBase Design 发布日志' | |
msg-poster: 'https://gw.alipayobjects.com/mdn/rms_08e378/afts/img/A*zx7LTI_ECSAAAAAAAAAAAABkARQnAQ' | |
msg-footer: '💬 前往 [**OceanBase Design Releases**]({{url}}) 查看更新日志' | |
prettier: true |