Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:

jobs:
claude-review:
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand All @@ -15,7 +16,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 1

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/golang-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,14 @@ jobs:
with:
version: "29.3"
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Clean generated files
run: make maintainer-clean
- name: Install tools
run: make install-tools
- name: Generate code
run: make generate
env:
PROTOC: ${{ steps.setup-protoc.outputs.path }}
PROTOC: ${{ steps.setup-protoc.outputs.path }}/bin/protoc
- name: Format code
run: make format
- name: Check file format
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ PRETTIER_TARGET ?= .
.PHONY: format-prettier
format: format-prettier
format-prettier:
$(PRETTIER) --write $(PRETTIER_TARGET)
$(PRETTIER) --write $(PRETTIER_TARGET) | grep -v '(unchanged)$$' || true

.PHONY: lint-go
lint-go:
Expand Down
4 changes: 2 additions & 2 deletions app/types/clusterconfig/clusterconfig.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/types/status/cluster_status.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading