fix: next 组件最新版本 TS 声明文件导出部分异常,暂时调整声明文件进行正常编译,后续组件升级后可再配合调整 #308
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: Check Base Branch | |
on: | |
pull_request: | |
types: [opened] | |
jobs: | |
code-review: | |
name: Check | |
runs-on: ubuntu-latest | |
steps: | |
# 判断用户是否有写仓库权限 | |
- name: 'Check User Permission' | |
uses: 'lannonbr/[email protected]' | |
with: | |
permission: 'write' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: 'Check base branch name is develop or not' | |
if: github.event.pull_request.base.ref != 'develop' # check the target branch if it's master | |
uses: actions-cool/issues-helper@v2 | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
感谢你的 PR,根据引擎的 [研发协作流程](https://lowcode-engine.cn/site/docs/participate/flow),请将目标合入分支设置为 **develop**。 | |
Thanks in advance, according to the [Contribution Guideline](https://lowcode-engine.cn/site/docs/participate/flow), please set the base branch to **develop**. | |
@${{ github.event.pull_request.user.login }} |