Skip to content

Commit df5d930

Browse files
committed
chore: update dependabot go module updates
1 parent ed3a6a5 commit df5d930

3 files changed

Lines changed: 48 additions & 11 deletions

File tree

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ updates:
77
open-pull-requests-limit: 10
88

99
- package-ecosystem: 'gomod'
10-
directory: '/backend'
10+
directory: '/'
1111
schedule:
1212
interval: 'weekly'
1313
open-pull-requests-limit: 10
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Dependabot Go Workspaces Tidy
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
types: [opened, synchronize, reopened]
7+
paths:
8+
- backend/go.mod
9+
- backend/go.sum
10+
- types/go.mod
11+
- types/go.sum
12+
- cli/go.mod
13+
- cli/go.sum
14+
- go.work
15+
- go.work.sum
16+
17+
jobs:
18+
tidy:
19+
runs-on: ubuntu-latest
20+
if: ${{ github.actor == 'dependabot[bot]' }}
21+
steps:
22+
- name: Checkout repository
23+
uses: actions/checkout@v6
24+
with:
25+
token: ${{ secrets.GITHUB_TOKEN }}
26+
27+
- name: Set up Go
28+
uses: actions/setup-go@v6
29+
with:
30+
go-version: "1.25.4"
31+
cache-dependency-path: |
32+
backend/go.sum
33+
cli/go.sum
34+
types/go.sum
35+
go.work.sum
36+
37+
- name: Run go work sync and go mod tidy
38+
run: |
39+
go work sync
40+
41+
- name: Commit changes (if any)
42+
uses: stefanzweifel/git-auto-commit-action@v5
43+
with:
44+
commit_message: "chore(deps): Synchronize go.mod files via go work sync"
45+
branch: ${{ github.head_ref }}

frontend/src/routes/(app)/settings/+layout.svelte

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -181,12 +181,7 @@
181181

182182
<div class="flex min-h-[calc(100vh-4rem)] flex-col md:flex-row">
183183
<!-- Desktop Sidebar -->
184-
<aside
185-
class={cn(
186-
'hidden w-64 shrink-0 border-r md:block',
187-
isGlassEnabled ? 'bg-background/50 backdrop-blur-sm' : 'bg-card'
188-
)}
189-
>
184+
<aside class={cn('hidden w-64 shrink-0 border-r md:block', isGlassEnabled ? 'bg-background/50 backdrop-blur-sm' : 'bg-card')}>
190185
<div class="sticky top-0 px-3 py-4">
191186
<h2 class="mb-4 px-4 text-lg font-semibold tracking-tight">{m.settings_title()}</h2>
192187
<nav class="space-y-1">
@@ -274,10 +269,7 @@
274269
size="lg"
275270
onclick={() => formState.resetFunction && formState.resetFunction()}
276271
disabled={formState.isLoading}
277-
class={cn(
278-
'size-14 rounded-full border-2 shadow-lg',
279-
isGlassEnabled ? 'bg-background/80 backdrop-blur-md' : 'bg-card'
280-
)}
272+
class={cn('size-14 rounded-full border-2 shadow-lg', isGlassEnabled ? 'bg-background/80 backdrop-blur-md' : 'bg-card')}
281273
>
282274
<ResetIcon class="size-5" />
283275
</Button>

0 commit comments

Comments
 (0)