From ef9011d585971f03ff2a0f369a1d4b61dc9df386 Mon Sep 17 00:00:00 2001 From: Emilien Escalle Date: Mon, 27 Mar 2023 15:20:19 +0200 Subject: [PATCH] fix(actions/create-and-merge-pull-request): do not sign commit --- README.md | 4 ++++ actions/create-and-merge-pull-request/action.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b251ec5..feb1c05 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,12 @@ Opinionated GitHub actions and workflows for common continuous integration needs ### - [Checkout](actions/checkout/README.md) +### - [Create and merge pull request](actions/create-and-merge-pull-request/README.md) + ### - [Create or update comment](actions/create-or-update-comment/README.md) +### - [Get GitHub actions bot user](actions/get-github-actions-bot-user/README.md) + ### - [Get issue number](actions/get-issue-number/README.md) ### - [Get matrix outputs](actions/get-matrix-outputs/README.md) diff --git a/actions/create-and-merge-pull-request/action.yml b/actions/create-and-merge-pull-request/action.yml index c2315b1..e16f8e0 100644 --- a/actions/create-and-merge-pull-request/action.yml +++ b/actions/create-and-merge-pull-request/action.yml @@ -43,7 +43,7 @@ runs: id: create-pull-request with: token: ${{ inputs.github-token }} - signoff: true + signoff: false base: ${{ github.event.repository.default_branch }} delete-branch: true branch: ${{ inputs.branch }}