From 35bbe0bcbe0423d2a638f35fe26173bd95345000 Mon Sep 17 00:00:00 2001 From: Jose Celano Date: Fri, 4 Mar 2022 16:03:49 +0000 Subject: [PATCH] fix: [#30] wrong input to enable signing commits --- .github/workflows/work-allocator.yml | 4 ++-- .github/workflows/worker.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/work-allocator.yml b/.github/workflows/work-allocator.yml index f8cc7fc..5ccb33d 100644 --- a/.github/workflows/work-allocator.yml +++ b/.github/workflows/work-allocator.yml @@ -45,7 +45,7 @@ jobs: with: queue_name: "library-update" action: "next-job" - git_commit_gpg_sign: "true" + git_commit_no_gpg_sign: "false" - name: Update submodule to get new commit ref id: update-submodule @@ -94,7 +94,7 @@ jobs: queue_name: "library-update" action: "create-job" job_payload: "${{ steps.build-payload.outputs.payload }}" - git_commit_gpg_sign: "true" + git_commit_no_gpg_sign: "false" - name: Show new git-queue commit if: ${{ steps.get-next-job.outputs.job_found == 'false' && steps.update-submodule.outputs.updated == 'true' && steps.create-job.outputs.job_created == 'true' }} diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index 46fef54..a4485c3 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -45,7 +45,7 @@ jobs: with: queue_name: "library-update" action: "next-job" - git_commit_gpg_sign: "true" + git_commit_no_gpg_sign: "false" - name: Parse job payload id: parse-payload @@ -74,7 +74,7 @@ jobs: queue_name: "library-update" action: "start-job" job_payload: ${{ steps.build-start-payload.outputs.payload }} - git_commit_gpg_sign: "true" + git_commit_no_gpg_sign: "false" # Begin mutual exclusion job @@ -187,7 +187,7 @@ jobs: queue_name: "library-update" action: "finish-job" job_payload: ${{ steps.build-finish-payload.outputs.payload }} - git_commit_gpg_sign: "true" + git_commit_no_gpg_sign: "false" - name: Debug step outputs if: ${{ steps.get-next-job.outputs.job_found == 'true' }}