We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3636f9 commit b374891Copy full SHA for b374891
.github/workflows/prepare_release.yml
@@ -14,6 +14,11 @@ on:
14
required: false
15
default: ''
16
type: string
17
+ sign-commits:
18
+ description: 'Sign commits as `github-actions[bot]` when using `GITHUB_TOKEN`, or your own bot when using GitHub App tokens.'
19
+ required: false
20
+ default: false
21
+ type: boolean
22
working-directory:
23
description: The working directory where all jobs should be executed. Used for modules in subdirectories like a monorepo or a control repository.
24
default: '.'
@@ -74,6 +79,7 @@ jobs:
74
79
commit-message: "Release ${{ inputs.version }}"
75
80
branch: release-prep
76
81
delete-branch: true
82
+ sign-commits: ${{ inputs.sign-commits }}
77
83
title: "Release ${{ inputs.version }}"
78
84
labels: skip-changelog
85
token: '${{ secrets.github_pat }}'
0 commit comments