From 68ec08e7dadae90ce8e7c2a70cf69aba7f1a3584 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Fri, 8 Nov 2024 10:12:09 +0900 Subject: [PATCH] PR: fixing Rekku private key - migrating to secrets --- .github/workflows/pr_from_upstream.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr_from_upstream.yml b/.github/workflows/pr_from_upstream.yml index 739af8b..c88b400 100644 --- a/.github/workflows/pr_from_upstream.yml +++ b/.github/workflows/pr_from_upstream.yml @@ -3,11 +3,10 @@ name: "Sync with Upstream and Create PR" on: workflow_dispatch: workflow_call: - inputs: + secrets: REKKU_PRIVATE_KEY: description: 'Private key for Rekku' required: true - type: string jobs: sync-upstream: @@ -29,7 +28,7 @@ jobs: uses: actions/create-github-app-token@v1 with: app-id: ${{ vars.REKKU_APP_ID }} - private-key: ${{ inputs.REKKU_PRIVATE_KEY }} + private-key: ${{ secrets.REKKU_PRIVATE_KEY }} owner: "RetroDECK" - name: Configuring Git