File tree Expand file tree Collapse file tree 3 files changed +47
-6
lines changed Expand file tree Collapse file tree 3 files changed +47
-6
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : github-actions
4+ directory : /
5+ schedule :
6+ interval : weekly
7+ commit-message :
8+ prefix : chore
9+ include : scope
10+
11+
12+ - package-ecosystem : gomod
13+ directory : /
14+ schedule :
15+ interval : weekly
16+ commit-message :
17+ prefix : chore
18+ include : scope
19+ # Update all packages under k8s scope in one group
20+ groups :
21+ kubernetes :
22+ patterns :
23+ - " k8s.io/*"
Original file line number Diff line number Diff line change 1+ name : Dependabot
2+
3+ on :
4+ pull_request :
5+
6+ permissions :
7+ contents : write
8+ pull-requests : write
9+
10+ jobs :
11+ auto-merge :
12+ runs-on : ubuntu-latest
13+ if : ${{ github.actor == 'dependabot[bot]' }}
14+ steps :
15+ - name : Dependabot metadata
16+ id : metadata
17+ uses : dependabot/fetch-metadata@v2
18+
19+ - name : Enable auto-merge for Dependabot PRs
20+ if : ${{ steps.metadata.outputs.update-type != 'version-update:semver-major' }}
21+ run : gh pr merge --auto --merge "$PR_URL"
22+ env :
23+ PR_URL : ${{ github.event.pull_request.html_url }}
24+ GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments