mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
87c34c8e90
* Update compressed-size.yml * Update issue-check-inactive.yml * Update issue-close-require.yml * Update issue-labeled.yml * Update issue-open-check.yml * Update issue-remove-inactive.yml * Update pr-check-merge.yml * Update preview-build.yml * Update preview-start.yml * Update rebase.yml * Update ui.yml * Update issue-labeled.yml
20 lines
707 B
YAML
20 lines
707 B
YAML
name: PR Check Merge
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
pr-check-merge:
|
|
runs-on: ubuntu-latest
|
|
if: (github.event.pull_request.head.ref == 'feature' || github.event.pull_request.head.ref == 'master') && github.event.pull_request.head.user.login == 'ant-design'
|
|
steps:
|
|
- uses: actions-cool/issues-helper@v2
|
|
with:
|
|
actions: 'create-comment'
|
|
issue-number: ${{ github.event.number }}
|
|
body: |
|
|
Hi @${{ github.event.pull_request.user.login }}。
|
|
|
|
**请注意**,当前 PR 是分支间的互相合并,请使用 `BranchAutoMerge` 标签来进行自动合并。切记**不要、不要、不要使用 `Squash`**。
|