-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
52 lines (48 loc) · 1.26 KB
/
action.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Verified Bot Commit
description: GitHub Action for creating signed and verified bot commits
author: Kyle Colantonio
branding:
icon: check
color: green
inputs:
ref:
description: The ref to push the commit to
required: false
default: ${{ github.ref }}
files:
description: Files/Glob patterns to include with the commit
required: true
message:
description: Message for the commit
required: false
message-file:
description: File to use for the commit message
required: false
force-push:
description: Force push the commit
required: false
default: 'false'
follow-symlinks:
description: Follow symbolic links when globbing files
required: false
default: 'true'
workspace:
description: Directory containing checked out files
required: false
default: ${{ github.workspace }}
token:
description: GitHub Token for REST API access
required: false
default: ${{ github.token }}
outputs:
blobs:
description: A JSON list of blob SHAs within the tree
tree:
description: SHA of the underlying tree for the commit
commit:
description: SHA of the commit itself
ref:
description: SHA for the ref that was updated (same as commit)
runs:
using: node20
main: dist/index.js