Skip to content

Commit 015c9cb

Browse files
committed
chore: rekres
Adds lefthook.yml Signed-off-by: Maja Bojarska <maja.bojarska@siderolabs.com>
1 parent 2bfe8c0 commit 015c9cb

3 files changed

Lines changed: 40 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED BY KRES, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2026-05-29T11:29:48Z by kres 8085f7d.
3+
# Generated on 2026-06-02T09:34:03Z by kres c1cf61e.
44

55
# common variables
66

@@ -255,7 +255,7 @@ lint-gofumpt-client: ## Runs gofumpt linter.
255255

256256
.PHONY: fmt
257257
fmt: ## Formats the source code
258-
@docker run --rm -it -v $(PWD):/src -w /src golang:$(GO_VERSION) \
258+
@docker run --rm -v $(PWD):/src -w /src golang:$(GO_VERSION) \
259259
bash -c "export GOTOOLCHAIN=local; \
260260
export GO111MODULE=on; export GOPROXY=https://proxy.golang.org; \
261261
go install mvdan.cc/gofumpt@$(GOFUMPT_VERSION) && \
@@ -522,7 +522,7 @@ release-notes: $(ARTIFACTS)
522522
.PHONY: conformance
523523
conformance:
524524
@docker pull $(CONFORMANCE_IMAGE)
525-
@docker run --rm -it -v $(PWD):/src -w /src $(CONFORMANCE_IMAGE) enforce
525+
@docker run --rm -v $(PWD):/src -w /src $(CONFORMANCE_IMAGE) enforce
526526

527527
.PHONY: renovate-local
528528
renovate-local: ## runs renovate locally to check syntax and test configuration

frontend/src/api/omni/specs/omni.pb.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,7 @@ export type MachineStatusSpecPlatformMetadata = {
302302
instance_id?: string
303303
provider_id?: string
304304
spot?: boolean
305+
tags?: {[key: string]: string}
305306
}
306307

307308
export type MachineStatusSpecSchematicInitialState = {

lefthook.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# THIS FILE WAS AUTOMATICALLY GENERATED BY KRES, PLEASE DO NOT EDIT.
2+
#
3+
# Generated on 2026-06-02T09:34:03Z by kres c1cf61e.
4+
5+
commit-msg:
6+
parallel: false
7+
commands:
8+
conformance:
9+
run: make conformance
10+
pre-commit:
11+
jobs:
12+
- name: fix
13+
group:
14+
parallel: false
15+
jobs:
16+
- name: generate frontend
17+
run: make generate-frontend
18+
stage_fixed: true
19+
- name: generate
20+
run: make generate
21+
stage_fixed: true
22+
- name: fmt
23+
run: make fmt
24+
stage_fixed: true
25+
- name: fmt
26+
run: make fmt
27+
stage_fixed: true
28+
- name: lint-fmt
29+
run: make lint-fmt
30+
stage_fixed: true
31+
- name: lint
32+
group:
33+
parallel: false
34+
jobs:
35+
- name: lint
36+
run: make lint

0 commit comments

Comments
 (0)