Browse Source

ci: add pr check ci yml (#29421)

* ci: add pr check ci yml

* Update pr-check-ci.yml
pull/29450/head
xrkffgg 4 years ago
committed by GitHub
parent
commit
aab4733f4d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 21
      .github/workflows/pr-check-ci.yml

21
.github/workflows/pr-check-ci.yml

@ -0,0 +1,21 @@
# Used to merge master/feature branches with each other
name: PR Check CI
on:
schedule:
- cron: "*/10 * * * *"
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions-cool/check-pr-ci@v1.1.0
with:
filter-label: 'BranchAutoMerge'
filter-creator-authority: 'write'
filter-head-ref: 'master, feature, master-merge-feature, feature-merge-master'
filter-support-fork: false
success-review: true
success-merge: true
merge-method: 'merge'
merge-title: 'chore: auto merge branchs (#${number})'
Loading…
Cancel
Save