Skip to content

Commit 8ee8ae8

Browse files
committed
chore: repository standardization
1 parent d069090 commit 8ee8ae8

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/dependabot.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,24 @@ updates:
66
interval: "weekly"
77
open-pull-requests-limit: 10
88
groups:
9-
all-actions:
9+
all-github-actions:
1010
patterns: ["*"]
1111
labels:
1212
- "dependencies"
13-
- "github-actions"
1413
- "auto-merge"
1514
commit-message:
1615
prefix: "chore"
1716
include: "scope"
18-
1917
- package-ecosystem: "gomod"
2018
directory: "/"
2119
schedule:
2220
interval: "weekly"
2321
open-pull-requests-limit: 10
2422
groups:
25-
all-go-deps:
23+
all-gomod:
2624
patterns: ["*"]
2725
labels:
2826
- "dependencies"
29-
- "go"
3027
- "auto-merge"
3128
commit-message:
3229
prefix: "chore"

.github/workflows/merge.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ name: Auto Merge
22

33
on:
44
pull_request:
5-
types: [opened, reopened, labeled]
5+
types: [opened, reopened, labeled, synchronize]
66

77
concurrency:
8-
group: ${{ github.workflow }}
8+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
9+
cancel-in-progress: true
910

1011
jobs:
1112
merge:
@@ -21,5 +22,5 @@ jobs:
2122
GH_TOKEN: ${{ github.token }}
2223
PR_URL: ${{ github.event.pull_request.html_url }}
2324
run: |
24-
gh pr review --approve "$PR_URL"
25+
gh pr review --approve "$PR_URL" || echo "PR approval skipped or failed."
2526
gh pr merge --auto --squash "$PR_URL"

0 commit comments

Comments
 (0)