8000 Update Dependabot and Mergify config to use new labels by thanethomson · Pull Request #21 · cometbft/cometbft · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update Dependabot and Mergify config to use new labels #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ updates:
target-branch: "main"
open-pull-requests-limit: 10
labels:
- T:dependencies
- S:automerge
- dependencies
- automerge

- package-ecosystem: github-actions
directory: "/"
Expand All @@ -17,8 +17,8 @@ updates:
target-branch: "v0.37.x"
open-pull-requests-limit: 10
labels:
- T:dependencies
- S:automerge
- dependencies
- automerge

- package-ecosystem: github-actions
directory: "/"
Expand All @@ -27,8 +27,8 @@ updates:
target-branch: "v0.34.x"
open-pull-requests-limit: 10
labels:
- T:dependencies
- S:automerge
- dependencies
- automerge

###################################
##
Expand All @@ -41,8 +41,8 @@ updates:
target-branch: "main"
open-pull-requests-limit: 10
labels:
- T:dependencies
- S:automerge
- dependencies
- automerge

- package-ecosystem: gomod
directory: "/"
Expand All @@ -53,8 +53,8 @@ updates:
# branches.
open-pull-requests-limit: 0
labels:
- T:dependencies
- S:automerge
- dependencies
- automerge

- package-ecosystem: gomod
directory: "/"
Expand All @@ -65,5 +65,5 @@ updates:
# branches.
open-pull-requests-limit: 0
labels:
- T:dependencies
- S:automerge
- dependencies
- automerge
8 changes: 4 additions & 4 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ queue_rules:
- name: default
conditions:
- base=main
- label=S:automerge
- label=automerge

pull_request_rules:
- name: Automerge to main
conditions:
- base=main
- label=S:automerge
- label=automerge
actions:
queue:
method: squash
Expand All @@ -20,15 +20,15 @@ pull_request_rules:
- name: backport patches to v0.37.x branch
conditions:
- base=main
- label=S:backport-to-v0.37.x
- label=backport-to-v0.37.x
actions:
backport:
branches:
- v0.37.x
- name: backport patches to v0.34.x branch
conditions:
- base=main
- label=S:backport-to-v0.34.x
- label=backport-to-v0.34.x
actions:
backport:
branches:
Expand Down
0