Skip to content

Commit a689616

Browse files
committed
fix: Linting issue of yamls
1 parent eda8262 commit a689616

4 files changed

Lines changed: 13 additions & 12 deletions

File tree

.github/workflows/claude-code-review.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: Code Review - Claude
23

34
on:

.github/workflows/revert-cli-release.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
echo "Expected format: X.Y.Z or X.Y.Z-prerelease.1"
4141
exit 1
4242
fi
43-
43+
4444
# Determine tag format (with or without 'v' prefix)
4545
TAG="v${VERSION}"
4646
echo "version=${VERSION}" >> $GITHUB_OUTPUT
@@ -198,17 +198,17 @@ jobs:
198198
script: |
199199
const releaseId = '${{ steps.check_release.outputs.release_id }}';
200200
const tag = '${{ env.TAG }}';
201-
201+
202202
console.log(`🗑️ Deleting release ID ${releaseId} for tag ${tag}...`);
203-
203+
204204
await github.rest.repos.deleteRelease({
205205
owner: context.repo.owner,
206206
repo: context.repo.repo,
207207
release_id: releaseId
208208
});
209-
209+
210210
console.log(`✅ Release deleted successfully`);
211-
211+
212212
// Also delete the tag if it exists
213213
try {
214214
await github.rest.git.deleteRef({
@@ -262,4 +262,3 @@ jobs:
262262
echo "- [ ] Revert PR in [keboola/scoop-keboola-cli](https://github.com/keboola/scoop-keboola-cli) that added version ${{ needs.validate-version.outputs.version }}" >> $GITHUB_STEP_SUMMARY
263263
echo "- [ ] Check/close WinGet PR in [microsoft/winget-pkgs](https://github.com/microsoft/winget-pkgs)" >> $GITHUB_STEP_SUMMARY
264264
echo "- [ ] Unlist Chocolatey package (if possible) at [community.chocolatey.org](https://community.chocolatey.org/packages/keboola-cli)" >> $GITHUB_STEP_SUMMARY
265-

build/ci/golangci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
# Configuration Documentation
23
#
34
# This file configures golangci-lint, a Go linter aggregator that runs various linters
@@ -79,11 +80,11 @@ linters:
7980
- wastedassign
8081
- whitespace
8182
# DISABLED
82-
#- goimports # replaced with gci
83-
#- gofmt # replaced with gofumpt
84-
#- nolintlint # strange behavior
85-
#- gomoddirectives # allow replace directive in go.mod
86-
#- misspell - broken, rewrites code
83+
# - goimports # replaced with gci
84+
# - gofmt # replaced with gofumpt
85+
# - nolintlint # strange behavior
86+
# - gomoddirectives # allow replace directive in go.mod
87+
# - misspell - broken, rewrites code
8788
settings:
8889
depguard:
8990
rules:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ services:
201201
- /var/lib/docker/containers:/var/lib/docker/containers:ro
202202
- /proc/:/host/proc/:ro
203203
- /sys/fs/cgroup/:/host/sys/fs/cgroup:ro
204-
# - /opt/datadog-agent/run:/opt/datadog-agent/run:rw
204+
# - /opt/datadog-agent/run:/opt/datadog-agent/run:rw
205205

206206
prometheus:
207207
image: prom/prometheus

0 commit comments

Comments
 (0)