fix(cli): Change Actions to run on default group (#40102)

**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ 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?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ 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>
This commit is contained in:
Alfred Göppel
2025-09-27 23:45:08 +02:00
committed by GitHub
parent 481370b41a
commit 936f78cfd3
5 changed files with 12 additions and 6 deletions

View File

@@ -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

View File

@@ -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:

View File

@@ -9,7 +9,8 @@ on:
- 'clustertool/**'
jobs:
goreleaser:
runs-on: actions-runners
runs-on:
group: default
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
with:

View File

@@ -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

View File

@@ -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