File tree Expand file tree Collapse file tree 2 files changed +43
-21
lines changed Expand file tree Collapse file tree 2 files changed +43
-21
lines changed Original file line number Diff line number Diff line change 1+ # Please see the documentation for all configuration options:
2+ # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
3+
14version : 2
25updates :
3- - package-ecosystem : composer
4- directory : " /"
5- schedule :
6- interval : daily
7- open-pull-requests-limit : 10
8- ignore :
9- - dependency-name : orchestra/testbench
10- versions :
11- - 6.11.0
12- - 6.12.0
13- - 6.14.0
14- - 6.16.0
15- - 6.9.0
16- - dependency-name : phpunit/phpunit
17- versions :
18- - 9.5.1
19- - 9.5.2
20- - 9.5.3
21- - dependency-name : laravel/framework
22- versions :
23- - 8.25.0
6+
7+ - package-ecosystem : " github-actions"
8+ directory : " /"
9+ schedule :
10+ interval : " weekly"
11+ labels :
12+ - " dependencies"
Original file line number Diff line number Diff line change 1+
2+ name : dependabot-auto-merge
3+ on : pull_request_target
4+
5+ permissions :
6+ pull-requests : write
7+ contents : write
8+
9+ jobs :
10+ dependabot :
11+ runs-on : ubuntu-latest
12+ if : ${{ github.actor == 'dependabot[bot]' }}
13+ steps :
14+
15+ - name : Dependabot metadata
16+ id : metadata
17+ uses :
dependabot/[email protected] 18+ with :
19+ github-token : " ${{ secrets.GITHUB_TOKEN }}"
20+
21+ - name : Auto-merge Dependabot PRs for semver-minor updates
22+ if : ${{steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
23+ run : gh pr merge --auto --merge "$PR_URL"
24+ env :
25+ PR_URL : ${{github.event.pull_request.html_url}}
26+ GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
27+
28+ - name : Auto-merge Dependabot PRs for semver-patch updates
29+ if : ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
30+ run : gh pr merge --auto --merge "$PR_URL"
31+ env :
32+ PR_URL : ${{github.event.pull_request.html_url}}
33+ GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
You can’t perform that action at this time.
0 commit comments