File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
12name : Code Review - Claude
23
34on :
Original file line number Diff line number Diff line change 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-
Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments