Skip to content

Commit 2883adc

Browse files
committed
configure dependabot
1 parent 00b1c99 commit 2883adc

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

.github/dependabot.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "gradle"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
open-pull-requests-limit: 10
8+
groups:
9+
gradle-deps:
10+
update-types:
11+
- "minor"
12+
- "patch"
13+
ignore:
14+
- dependency-name: "*"
15+
update-types:
16+
- "version-update:semver-major"
17+
- package-ecosystem: "github-actions"
18+
directory: "/"
19+
schedule:
20+
interval: "weekly"
21+
open-pull-requests-limit: 10
22+
groups:
23+
github-actions:
24+
update-types:
25+
- "minor"
26+
- "patch"
27+
ignore:
28+
- dependency-name: "*"
29+
update-types:
30+
- "version-update:semver-major"

.github/workflows/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Dependabot Auto Merge
2+
3+
on:
4+
pull_request_target:
5+
6+
permissions:
7+
contents: write
8+
pull-requests: write
9+
10+
jobs:
11+
dependabot:
12+
if: github.actor == 'dependabot[bot]'
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: fastify/github-action-merge-dependabot@v3
16+
with:
17+
github-token: ${{ secrets.GITHUB_TOKEN }}
18+
merge-method: squash

0 commit comments

Comments
 (0)