File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 9
9
directory : " /" # Location of package manifests
10
10
schedule :
11
11
interval : " weekly"
12
+
13
+ - package-ecosystem : " github-actions"
14
+ directory : " /"
15
+ schedule :
16
+ interval : " weekly"
Original file line number Diff line number Diff line change
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]' && github.repository == 'HTTPArchive/wappalyzer'
12
+ steps :
13
+
14
+ - name : Dependabot metadata
15
+ id : metadata
16
+ uses : dependabot/fetch-metadata@v2
17
+ with :
18
+ github-token : " ${{ secrets.GITHUB_TOKEN }}"
19
+
20
+ - name : Enable auto-merge for Dependabot PRs
21
+ if : steps.metadata.outputs.update-type == 'version-update:semver-patch'
22
+ run : gh pr merge --auto --merge "$PR_URL"
23
+ env :
24
+ PR_URL : ${{github.event.pull_request.html_url}}
25
+ GH_TOKEN : ${{secrets.GITHUB_TOKEN}}
You can’t perform that action at this time.
0 commit comments