From 936f78cfd3b392d0f0b66ff83fca07e38ca90937 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alfred=20G=C3=B6ppel?= <43101280+alfi0812@users.noreply.github.com> Date: Sat, 27 Sep 2025 23:45:08 +0200 Subject: [PATCH] fix(cli): Change Actions to run on default group (#40102) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [x] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** **📃 Notes:** **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --------- Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> --- .github/workflows/charts-release.yaml | 3 ++- .github/workflows/clustertool.golangci-lint.yaml | 3 ++- .github/workflows/clustertool.release.yaml | 3 ++- .github/workflows/clustertool.tests.yaml | 3 ++- .github/workflows/daily.yaml | 6 ++++-- 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/charts-release.yaml b/.github/workflows/charts-release.yaml index 76d40c4cb6b..2e1cf12451a 100644 --- a/.github/workflows/charts-release.yaml +++ b/.github/workflows/charts-release.yaml @@ -50,7 +50,8 @@ jobs: permissions: pull-requests: write name: "${{ github.ref == 'refs/heads/master' && '(Production)' || '(Preview)' }}" - runs-on: actions-runners + runs-on: + group: default needs: check_changes steps: - name: Checkout diff --git a/.github/workflows/clustertool.golangci-lint.yaml b/.github/workflows/clustertool.golangci-lint.yaml index 9a800433dca..dddc6ecd0b1 100644 --- a/.github/workflows/clustertool.golangci-lint.yaml +++ b/.github/workflows/clustertool.golangci-lint.yaml @@ -31,7 +31,8 @@ permissions: jobs: golangci: name: lint - runs-on: actions-runners + runs-on: + group: default steps: - uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6 with: diff --git a/.github/workflows/clustertool.release.yaml b/.github/workflows/clustertool.release.yaml index 65fa0dc7c5a..905209e4abb 100644 --- a/.github/workflows/clustertool.release.yaml +++ b/.github/workflows/clustertool.release.yaml @@ -9,7 +9,8 @@ on: - 'clustertool/**' jobs: goreleaser: - runs-on: actions-runners + runs-on: + group: default steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 with: diff --git a/.github/workflows/clustertool.tests.yaml b/.github/workflows/clustertool.tests.yaml index c30d6835429..192e46a0db7 100644 --- a/.github/workflows/clustertool.tests.yaml +++ b/.github/workflows/clustertool.tests.yaml @@ -49,7 +49,8 @@ jobs: - 'clustertool/**' build: - runs-on: actions-runners + runs-on: + group: default if: needs.check_changes.outputs.changes_detected == 'true' steps: - uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6 diff --git a/.github/workflows/daily.yaml b/.github/workflows/daily.yaml index 6701fbddead..1d6c963e381 100644 --- a/.github/workflows/daily.yaml +++ b/.github/workflows/daily.yaml @@ -116,7 +116,8 @@ jobs: git push lock-threads: - runs-on: actions-runners + runs-on: + group: default steps: - uses: dessant/lock-threads@1bf7ec25051fe7c00bdd17e6a7cf3d7bfb7dc771 # v5 with: @@ -132,7 +133,8 @@ jobs: # check-contributors: # name: Check Contributors - # runs-on: actions-runners + # runs-on: + # group: default # steps: # - name: Checkout # uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4