* Add new input 'issue-body' Similar to the 'issue-title' input, 'issue-body' allows to put custom text to the body of the approval issue. * Update readme for 'issue-body' input
27 lines
811 B
YAML
27 lines
811 B
YAML
name: Manual Workflow Approval
|
|
description: Pause a workflow and get user approval to continue
|
|
branding:
|
|
icon: pause
|
|
color: yellow
|
|
inputs:
|
|
approvers:
|
|
description: Required approvers
|
|
required: true
|
|
secret:
|
|
description: Secret
|
|
required: true
|
|
minimum-approvals:
|
|
description: Minimum number of approvals to progress workflow
|
|
required: false
|
|
issue-title:
|
|
description: The custom subtitle for the issue
|
|
required: false
|
|
issue-body:
|
|
description: The custom body for the issue
|
|
required: false
|
|
exclude-workflow-initiator-as-approver:
|
|
description: Whether or not to filter out the user who initiated the workflow as an approver if they are in the approvers list
|
|
default: false
|
|
runs:
|
|
using: docker
|
|
image: docker://ghcr.io/trstringer/manual-approval:1.8.0
|