From af6d74fbea4972e5ceb3bc9f194570b393ade662 Mon Sep 17 00:00:00 2001 From: xnoto Date: Thu, 30 Apr 2026 10:10:40 -0600 Subject: [PATCH] ci: drop title-case job display names Without a name: field GitHub uses the job key, so the Actions pane shows lowercase test/plan/apply/lint instead of "Pre-commit Tests", "OpenTofu Plan", "OpenTofu Apply", and "Lint". Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/_ci.yml | 1 - .github/workflows/opentofu.yml | 3 --- 2 files changed, 4 deletions(-) diff --git a/.github/workflows/_ci.yml b/.github/workflows/_ci.yml index ded3c88..67372c0 100644 --- a/.github/workflows/_ci.yml +++ b/.github/workflows/_ci.yml @@ -10,7 +10,6 @@ on: jobs: lint: - name: Lint # ubuntu-latest while arc-dind runners are unavailable during the libvirt # migration. Revert to `arc` once the new k3s cluster has ARC runners up. runs-on: ubuntu-latest diff --git a/.github/workflows/opentofu.yml b/.github/workflows/opentofu.yml index 87dfccf..9171d1c 100644 --- a/.github/workflows/opentofu.yml +++ b/.github/workflows/opentofu.yml @@ -29,7 +29,6 @@ permissions: jobs: test: - name: Pre-commit Tests runs-on: ${{ inputs.runs-on }} env: SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }} @@ -58,7 +57,6 @@ jobs: run: SKIP=no-commit-to-branch pre-commit run -a plan: - name: OpenTofu Plan runs-on: ${{ inputs.runs-on }} if: github.event_name == 'pull_request' needs: [test] @@ -107,7 +105,6 @@ jobs: body-path: comment-body.md apply: - name: OpenTofu Apply runs-on: ${{ inputs.runs-on }} if: github.event_name == 'push' && github.ref == 'refs/heads/main' needs: [test]