Skip to content

Commit b8ac217

Browse files
authored
Merge pull request #134 from playfulprogramming/dependabot-group
Create a dependabot group for drizzle
2 parents b8cefd0 + 942487f commit b8ac217

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,11 @@ updates:
66
interval: "weekly"
77
cooldown:
88
default-days: 14
9+
groups:
10+
drizzle:
11+
applies-to: version-updates
12+
patterns:
13+
- drizzle-*
14+
update-types:
15+
- minor
16+
- patch
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Dependabot auto-merge
2+
on: pull_request
3+
4+
permissions:
5+
contents: write
6+
pull-requests: write
7+
8+
jobs:
9+
dependabot:
10+
runs-on: ubuntu-latest
11+
if: github.event.pull_request.user.login == 'dependabot[bot]'
12+
steps:
13+
- name: Dependabot metadata
14+
id: metadata
15+
uses: dependabot/fetch-metadata@ffa630c65fa7e0ecfa0625b5ceda64399aea1b36
16+
- name: Enable auto-merge for Dependabot PRs
17+
run: gh pr merge --auto --merge "$PR_URL"
18+
env:
19+
PR_URL: ${{ github.event.pull_request.html_url }}
20+
GH_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)