File tree Expand file tree Collapse file tree
frontend/src/routes/(app)/settings Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff line change 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" >
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 >
You can’t perform that action at this time.
0 commit comments