From 6d228550692ac7f6ff9f369b2cbe58205bec38d8 Mon Sep 17 00:00:00 2001 From: Peter Pathirana Date: Thu, 3 Sep 2026 20:36:53 +0000 Subject: [PATCH] feat(reusable-workflows)!: input param consistency --- .github/workflows/release-please.yaml | 4 ++-- .github/workflows/renovate.yaml | 4 ++-- .github/workflows/self-release-please.yaml | 2 +- .github/workflows/self-renovate.yaml | 2 +- .github/workflows/self-test-aqua.yaml | 2 +- .github/workflows/self-test-release-please.yaml | 2 +- .github/workflows/update-aqua-checksums.yaml | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release-please.yaml b/.github/workflows/release-please.yaml index cf320ea7..a3895691 100644 --- a/.github/workflows/release-please.yaml +++ b/.github/workflows/release-please.yaml @@ -12,7 +12,7 @@ on: required: false type: boolean secrets: - client_id: + app_client_id: required: true app_private_key: required: true @@ -33,7 +33,7 @@ jobs: uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 id: app-token with: - client-id: ${{ secrets.client_id }} + client-id: ${{ secrets.app_client_id }} private-key: ${{ secrets.app_private_key }} owner: ${{ github.repository_owner }} repositories: ${{ github.repository }} diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml index de54ba76..7b210d2b 100644 --- a/.github/workflows/renovate.yaml +++ b/.github/workflows/renovate.yaml @@ -20,7 +20,7 @@ on: type: number default: 10 secrets: - client_id: + app_client_id: required: true app_private_key: required: true @@ -38,7 +38,7 @@ jobs: uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 id: app-token with: - client-id: ${{ secrets.client_id }} + client-id: ${{ secrets.app_client_id }} private-key: ${{ secrets.app_private_key }} owner: ${{ github.repository_owner }} repositories: ${{ github.repository }} diff --git a/.github/workflows/self-release-please.yaml b/.github/workflows/self-release-please.yaml index 3447b03d..cf3cc697 100644 --- a/.github/workflows/self-release-please.yaml +++ b/.github/workflows/self-release-please.yaml @@ -17,5 +17,5 @@ jobs: release: uses: ./.github/workflows/release-please.yaml secrets: - client_id: ${{ secrets.HOMELAB_BOT_CLIENT_ID }} + app_client_id: ${{ secrets.HOMELAB_BOT_CLIENT_ID }} app_private_key: ${{ secrets.HOMELAB_BOT_APP_PRIVATE_KEY }} diff --git a/.github/workflows/self-renovate.yaml b/.github/workflows/self-renovate.yaml index 385df92c..d8125504 100644 --- a/.github/workflows/self-renovate.yaml +++ b/.github/workflows/self-renovate.yaml @@ -23,7 +23,7 @@ jobs: git_ref: ${{ github.head_ref || github.ref }} log_level: debug secrets: - client_id: ${{ secrets.RENOVATE_CLIENT_ID }} + app_client_id: ${{ secrets.RENOVATE_CLIENT_ID }} app_private_key: ${{ secrets.RENOVATE_APP_PRIVATE_KEY }} dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }} dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }} diff --git a/.github/workflows/self-test-aqua.yaml b/.github/workflows/self-test-aqua.yaml index bc213e01..55315d11 100644 --- a/.github/workflows/self-test-aqua.yaml +++ b/.github/workflows/self-test-aqua.yaml @@ -31,5 +31,5 @@ jobs: semantic_commit_type: test semantic_commit_scope: internal-workflows secrets: - client_id: ${{ secrets.HOMELAB_BOT_CLIENT_ID }} + app_client_id: ${{ secrets.HOMELAB_BOT_CLIENT_ID }} app_private_key: ${{ secrets.HOMELAB_BOT_APP_PRIVATE_KEY }} diff --git a/.github/workflows/self-test-release-please.yaml b/.github/workflows/self-test-release-please.yaml index ceb8cc64..f67ec888 100644 --- a/.github/workflows/self-test-release-please.yaml +++ b/.github/workflows/self-test-release-please.yaml @@ -26,5 +26,5 @@ jobs: dry_run: true verbose: true secrets: - client_id: ${{ secrets.HOMELAB_BOT_CLIENT_ID }} + app_client_id: ${{ secrets.HOMELAB_BOT_CLIENT_ID }} app_private_key: ${{ secrets.HOMELAB_BOT_APP_PRIVATE_KEY }} diff --git a/.github/workflows/update-aqua-checksums.yaml b/.github/workflows/update-aqua-checksums.yaml index a7ad6b6f..a8118e2a 100644 --- a/.github/workflows/update-aqua-checksums.yaml +++ b/.github/workflows/update-aqua-checksums.yaml @@ -31,7 +31,7 @@ on: type: string default: "dev-tools" secrets: - client_id: + app_client_id: required: true app_private_key: required: true @@ -49,7 +49,7 @@ jobs: uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 id: app-token with: - client-id: ${{ secrets.client_id }} + client-id: ${{ secrets.app_client_id }} private-key: ${{ secrets.app_private_key }} owner: ${{ github.repository_owner }} repositories: ${{ github.repository }}