Skip to content

Commit 81f9da5

Browse files
committed
update workflows, dependabot config
1 parent 52a7d8c commit 81f9da5

File tree

3 files changed

+4
-22
lines changed

3 files changed

+4
-22
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,9 @@ updates:
66
open-pull-requests-limit: 10
77
schedule:
88
interval: weekly
9-
groups:
10-
dev-dependencies:
11-
- '*'
12-
dependencies:
13-
- '*'
14-
labels:
15-
- "dependencies"
16-
allow:
17-
- dependency-type: "direct"
189

1910
- package-ecosystem: "github-actions"
2011
directory: "/"
2112
open-pull-requests-limit: 10
2213
schedule:
2314
interval: weekly
24-
labels:
25-
- "dependencies"
26-
allow:
27-
- dependency-type: "direct"

.github/workflows/dependabot-auto-merge.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,8 @@ jobs:
1717
with:
1818
github-token: "${{ secrets.GITHUB_TOKEN }}"
1919

20-
- name: Auto-merge Dependabot PRs for semver-minor updates
21-
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
22-
run: gh pr merge --auto --merge "$PR_URL"
23-
env:
24-
PR_URL: ${{github.event.pull_request.html_url}}
25-
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
26-
27-
- name: Auto-merge Dependabot PRs for semver-patch updates
28-
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
20+
- name: Auto-merge Dependabot PRs
21+
if: ${{steps.metadata.outputs.update-type != 'version-update:semver-major'}}
2922
run: gh pr merge --auto --merge "$PR_URL"
3023
env:
3124
PR_URL: ${{github.event.pull_request.html_url}}

.github/workflows/run-goreleaser.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
strategy:
20+
matrix:
21+
os: [ubuntu-latest]
2022
fail-fast: false
2123

2224
steps:

0 commit comments

Comments
 (0)