mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
chore(gh): Prepare for more branches to be added
This commit is contained in:
parent
d40e42a9ca
commit
0eeb4da33d
3 changed files with 12 additions and 2 deletions
10
.github/settings.yml
vendored
10
.github/settings.yml
vendored
|
@ -108,3 +108,13 @@ branches:
|
|||
contexts: ["CI", "Lint Commits", "Spell Check with Typos"]
|
||||
enforce_admins: false
|
||||
restrictions: null
|
||||
- name: v2-master
|
||||
protection:
|
||||
required_pull_request_reviews: null
|
||||
required_conversation_resolution: true
|
||||
required_status_checks:
|
||||
# Required. Require branches to be up to date before merging.
|
||||
strict: false
|
||||
contexts: ["CI", "Lint Commits", "Spell Check with Typos"]
|
||||
enforce_admins: false
|
||||
restrictions: null
|
||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -2,7 +2,7 @@ name: CI
|
|||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [master]
|
||||
branches: ["*master"]
|
||||
schedule:
|
||||
- cron: '3 3 3 * *'
|
||||
permissions:
|
||||
|
|
2
.github/workflows/pre-commit.yml
vendored
2
.github/workflows/pre-commit.yml
vendored
|
@ -2,7 +2,7 @@ name: pre-commit
|
|||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [master]
|
||||
branches: ["*master"]
|
||||
jobs:
|
||||
pre-commit:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Reference in a new issue