-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathaction.yml
More file actions
88 lines (84 loc) · 2.28 KB
/
action.yml
File metadata and controls
88 lines (84 loc) · 2.28 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: verified-bot-commit
description: GitHub Action for creating signed and verified bot commits
author: Kyle Colantonio
branding:
icon: check
color: green
inputs:
repository:
description: The target repository
required: false
default: ${{ github.repository }}
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
auto-stage:
description: Stage all changed files for committing
required: false
default: 'true'
update-local:
description: Update local branch after committing
required: false
default: 'true'
force-push:
description: Force push the commit
required: false
default: 'false'
if-no-commit:
description: Set the behavior when no commit is made
required: false
default: 'warning'
allow-empty-commit:
description: Allow creating an empty commit if there are no changes
required: false
default: 'false'
no-throttle:
description: Disable the throttling mechanism during requests
required: false
default: 'false'
no-retry:
description: Disable the retry mechanism during requests
required: false
default: 'false'
max-retries:
description: Number of retries to attempt if a request fails
required: false
default: '1'
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 }}
api-url:
description: Base URL for the GitHub API
required: false
default: ${{ github.api_url }}
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: node24
main: dist/index.js