From b569e498933a3b9042e230ac9b29a306ae17b3a1 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 31 Mar 2025 17:48:20 +0200 Subject: [PATCH 1/9] chore(ci): add shellcheck --- .gitea/workflows/shellcheck.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/shellcheck.yml diff --git a/.gitea/workflows/shellcheck.yml b/.gitea/workflows/shellcheck.yml new file mode 100644 index 0000000..88073ce --- /dev/null +++ b/.gitea/workflows/shellcheck.yml @@ -0,0 +1,15 @@ +name: Lint Shell files + +on: + pull_request: + branches: [ "*" ] + types: [ "opened", "edited" ] + workflow_dispatch: {} + +jobs: + shellcheck: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4.2.2 + - run: apt install shellcheck + - run: find . -type f -name "*.sh" -exec shellcheck -a {} \; \ No newline at end of file -- 2.47.2 From d72d43a51ff42f21e3744a228019a4c33c391d02 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 31 Mar 2025 18:15:59 +0200 Subject: [PATCH 2/9] fix(scripts): shellcheck: SC2181 --- scripts/token.sh | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/scripts/token.sh b/scripts/token.sh index cbb2ebd..ac4fd37 100755 --- a/scripts/token.sh +++ b/scripts/token.sh @@ -8,9 +8,14 @@ check_token() { set +e echo "Checking for existing token..." - token="$(kubectl get secret "$SECRET_NAME" -o jsonpath="{.data['token']}" 2> /dev/null)" - [ $? -ne 0 ] && return 1 - [ -z "$token" ] && return 2 + if ! token=$(kubectl get secret "${SECRET_NAME}" -o jsonpath="{.data['token']}" 2> /dev/null); then + return 1 + fi + + if [ -z "${token}" ]; then + return 2 + fi + return 0 } -- 2.47.2 From 6e9230d7225585008540da3a96087c013958575f Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 31 Mar 2025 18:18:59 +0200 Subject: [PATCH 3/9] style(ci): remove obsolete spaces --- .gitea/workflows/shellcheck.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/shellcheck.yml b/.gitea/workflows/shellcheck.yml index 88073ce..d1cebf2 100644 --- a/.gitea/workflows/shellcheck.yml +++ b/.gitea/workflows/shellcheck.yml @@ -2,8 +2,8 @@ name: Lint Shell files on: pull_request: - branches: [ "*" ] - types: [ "opened", "edited" ] + branches: ["*"] + types: ["opened","edited"] workflow_dispatch: {} jobs: -- 2.47.2 From ba7770fdbdcc385146b97f87dc9ac1b3fb755bb3 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 31 Mar 2025 18:23:37 +0200 Subject: [PATCH 4/9] style(editorconfig): set indent style to tab for Makefiles --- .editorconfig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index ebe51d3..e560cbb 100644 --- a/.editorconfig +++ b/.editorconfig @@ -9,4 +9,7 @@ indent_size = 2 end_of_line = lf charset = utf-8 trim_trailing_whitespace = false -insert_final_newline = false \ No newline at end of file +insert_final_newline = false + +[Makefile] +indent_style = tab \ No newline at end of file -- 2.47.2 From f757aff455c4a82e690eedcd4d6925fb91be688d Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 31 Mar 2025 18:23:54 +0200 Subject: [PATCH 5/9] fix(Makefile): add new target 'yamllint' --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9346d0e..24aba16 100644 --- a/Makefile +++ b/Makefile @@ -16,4 +16,7 @@ unittests-helm: .PHONY: helm update-helm-dependencies: helm dependency update - \ No newline at end of file + +.PHONY: yamllint +yamllint: + yamllint -c .yamllint . \ No newline at end of file -- 2.47.2 From 891538554c47b66273f2205d5bf97a5029425ad8 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 31 Mar 2025 18:24:30 +0200 Subject: [PATCH 6/9] style(ci): lint action --- .gitea/workflows/shellcheck.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/shellcheck.yml b/.gitea/workflows/shellcheck.yml index d1cebf2..5df26e5 100644 --- a/.gitea/workflows/shellcheck.yml +++ b/.gitea/workflows/shellcheck.yml @@ -3,13 +3,13 @@ name: Lint Shell files on: pull_request: branches: ["*"] - types: ["opened","edited"] + types: ["opened", "edited"] workflow_dispatch: {} jobs: shellcheck: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.2.2 - - run: apt install shellcheck - - run: find . -type f -name "*.sh" -exec shellcheck -a {} \; \ No newline at end of file + - uses: actions/checkout@v4.2.2 + - run: apt install shellcheck + - run: find . -type f -name "*.sh" -exec shellcheck -a {} \; -- 2.47.2 From 421f3fcbc5c9f99b410914785099291376c731e6 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 31 Mar 2025 18:28:32 +0200 Subject: [PATCH 7/9] chore(ci): change types to oopened, reopened and synchronize --- .gitea/workflows/shellcheck.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/shellcheck.yml b/.gitea/workflows/shellcheck.yml index 5df26e5..5fbffde 100644 --- a/.gitea/workflows/shellcheck.yml +++ b/.gitea/workflows/shellcheck.yml @@ -3,7 +3,7 @@ name: Lint Shell files on: pull_request: branches: ["*"] - types: ["opened", "edited"] + types: ["opened", "reopened", "synchronize"] workflow_dispatch: {} jobs: -- 2.47.2 From bd3afb64c4b670ff4c80284c69b8db90dfb86109 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 31 Mar 2025 18:31:15 +0200 Subject: [PATCH 8/9] chore(ci): update apt packages and proceed installation non-interactively --- .gitea/workflows/shellcheck.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/shellcheck.yml b/.gitea/workflows/shellcheck.yml index 5fbffde..4f4188d 100644 --- a/.gitea/workflows/shellcheck.yml +++ b/.gitea/workflows/shellcheck.yml @@ -11,5 +11,5 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4.2.2 - - run: apt install shellcheck + - run: apt update --yes && apt install --yes shellcheck - run: find . -type f -name "*.sh" -exec shellcheck -a {} \; -- 2.47.2 From fe652d335cc6f12df7b0b220fae34479a89b4696 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 31 Mar 2025 22:08:00 +0200 Subject: [PATCH 9/9] chore(ci): remove workflow_dispatch --- .gitea/workflows/shellcheck.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitea/workflows/shellcheck.yml b/.gitea/workflows/shellcheck.yml index 4f4188d..592c555 100644 --- a/.gitea/workflows/shellcheck.yml +++ b/.gitea/workflows/shellcheck.yml @@ -4,7 +4,6 @@ on: pull_request: branches: ["*"] types: ["opened", "reopened", "synchronize"] - workflow_dispatch: {} jobs: shellcheck: -- 2.47.2