From a620e0bce595d99502f03e34515b9cbaaefd40a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbyn=C4=9Bk=20Dr=C3=A1pela?= Date: Thu, 22 Jan 2026 14:02:58 +0100 Subject: [PATCH 1/3] chore(ci): ShellCheck with GH auth Add GITHUB_TOKEN to avoid rate limiting while downloading ShellCheck binary Assisted-by: Cursor --- .github/workflows/bash-e2e-lint.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/bash-e2e-lint.yaml b/.github/workflows/bash-e2e-lint.yaml index df44ffccd5..2e11426e0a 100644 --- a/.github/workflows/bash-e2e-lint.yaml +++ b/.github/workflows/bash-e2e-lint.yaml @@ -28,6 +28,8 @@ jobs: - name: Run ShellCheck check working-directory: ./.ibm + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: yarn shellcheck - name: Run Prettier check From c6a5acd273e597ff6ebdc17bfb475973af206c6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbyn=C4=9Bk=20Dr=C3=A1pela?= Date: Thu, 22 Jan 2026 14:05:00 +0100 Subject: [PATCH 2/3] Update cleanup.sh --- .ibm/pipelines/cleanup.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.ibm/pipelines/cleanup.sh b/.ibm/pipelines/cleanup.sh index f69c570902..47e5cb00f8 100755 --- a/.ibm/pipelines/cleanup.sh +++ b/.ibm/pipelines/cleanup.sh @@ -10,6 +10,8 @@ source "$DIR"/lib/log.sh cleanup() { if [[ $? -ne 0 ]]; then + echo "TEST: revert me:" + log::error "Exited with an error, setting OVERALL_RESULT to 1" save_overall_result 1 fi From 93544c75906213850bce9afaa6f8e3214974543c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbyn=C4=9Bk=20Dr=C3=A1pela?= Date: Thu, 22 Jan 2026 16:45:29 +0100 Subject: [PATCH 3/3] Revert "Update cleanup.sh" This reverts commit c6a5acd273e597ff6ebdc17bfb475973af206c6c. --- .ibm/pipelines/cleanup.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/.ibm/pipelines/cleanup.sh b/.ibm/pipelines/cleanup.sh index 47e5cb00f8..f69c570902 100755 --- a/.ibm/pipelines/cleanup.sh +++ b/.ibm/pipelines/cleanup.sh @@ -10,8 +10,6 @@ source "$DIR"/lib/log.sh cleanup() { if [[ $? -ne 0 ]]; then - echo "TEST: revert me:" - log::error "Exited with an error, setting OVERALL_RESULT to 1" save_overall_result 1 fi