Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: [#30] wrong input to enable signing commits #32

Merged
merged 1 commit into from
Mar 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/work-allocator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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' }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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' }}
Expand Down