-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
51 lines (47 loc) · 1.21 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
name: GitHub Signed Commit
description: GitHub Action to create signed commits
branding:
icon: git-commit
color: orange
inputs:
files:
description: |
Multi-line string of file paths to be committed, relative to the current workspace.
required: false
workspace:
description: |
Directory containing files to be committed. Default: GitHub workspace directory (root of repository).
required: false
default: ''
commit-message:
description: |
Commit message for the file changes.
required: false
branch-name:
description: |
Branch to commit to. Default: Workflow triggered branch.
required: false
default: ''
branch-push-force:
description: |
--force flag when running git push <branch-name>.
required: false
default: false
tag:
description: |
Push tag for the new/current commit.
required: false
default: ''
tag-only-if-file-changes:
description: |
Push tag for new commit only when file changes present.
required: false
default: true
outputs:
commit-sha:
description: Full SHA of the signed commit.
tag:
description: Tag of the signed commit.
runs:
using: node20
main: dist/index.js