-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
30 lines (30 loc) · 879 Bytes
/
action.yml
File metadata and controls
30 lines (30 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: 'GitHub Commit Sign'
description: 'Perform multi-file signed commits on a GitHub repo through their GraphQL APIs.'
branding:
icon: edit-3
color: gray-dark
inputs:
args:
description: 'Arguments to pass to the Dockerfile entrypoint.'
required: true
default: '--help'
debug:
description: 'Whether to enable debug mode.'
required: false
default: 'false'
outputs:
command:
description: 'The command that was executed.'
commitUrl:
description: 'The URL of the commit if that was created successfully.'
hasBranch:
description: 'Whether the branch already exists.'
runs:
using: 'docker'
image: 'Dockerfile'
env:
DEBUG: ${{ inputs.debug }}
# GITHUB_TOKEN is already available in the action container context
# but be sure that it has 'writer' permissions on the target repository.
args:
- ${{ inputs.args }}