PR Check CI #12017
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
# Used to merge master/feature branches with each other | |
name: PR Check CI | |
on: | |
schedule: | |
- cron: "*/5 * * * *" | |
permissions: | |
contents: read | |
jobs: | |
pr-check-ci: | |
if: github.repository == 'ant-design/ant-design' | |
permissions: | |
checks: read # for actions-cool/check-pr-ci to get check reference | |
contents: write # for actions-cool/check-pr-ci to merge PRs | |
issues: write # for actions-cool/check-pr-ci to update issues | |
pull-requests: write # for actions-cool/check-pr-ci to update PRs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-cool/check-pr-ci@v1 | |
with: | |
filter-label: 'BranchAutoMerge' | |
filter-creator-authority: 'write' | |
filter-head-ref: 'master, feature, next, master-merge-feature, feature-merge-master, next-merge-master, next-merge-feature' | |
filter-support-fork: false | |
skip-run-names: 'deploy preview, pr-check-ci, upstream workflow summary, suggest-related-links, download visual-regression report' | |
conflict-review-body: '😅 This branch has conflicts that must be resolved!' | |
success-review: true | |
success-merge: true | |
merge-method: 'merge' | |
merge-title: 'chore: auto merge branches (#${number})' |