File tree 2 files changed +32
-0
lines changed
2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,14 @@ updates:
37
37
OpenTelemetry :
38
38
patterns :
39
39
- " OpenTelemetry.*"
40
+ Serilog :
41
+ patterns :
42
+ - " Serilog"
43
+ - " Serilog.*"
44
+ Hangfire :
45
+ patterns :
46
+ - " Hangfire"
47
+ - " Hangfire.*"
40
48
Testcontainers :
41
49
patterns :
42
50
- " Testcontainers.*"
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.actor == 'dependabot[bot]'
12
+
13
+ steps :
14
+ - name : Dependabot Metadata
15
+ id : metadata
16
+ uses : dependabot/fetch-metadata@v2
17
+ with :
18
+ github-token : " ${{ secrets.GITHUB_TOKEN }}"
19
+
20
+ - name : Dependabot Auto-Merge PRs
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}}
You can’t perform that action at this time.
0 commit comments