-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
33 lines (33 loc) · 880 Bytes
/
action.yml
File metadata and controls
33 lines (33 loc) · 880 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
31
32
33
name: "SaaSquatch Git Commit Action"
description: "Create commits using the GitHub API"
inputs:
files:
description: "Files to be committed"
required: true
message:
description: "Commit message"
required: true
long-message:
description: "Optional long commit message"
required: false
tag:
description: "Optionally create a tag for this commit"
required: false
tag-message:
description: "Tag message (required if tag is specified)"
required: false
repository:
description: "Repository with both owner and repo name"
required: true
branch:
description: "Branch to commit to"
required: true
working-directory:
description: "Working directory of the `files` input"
required: false
outputs:
success:
description: "Whether or not the commits succeeded"
runs:
using: "node24"
main: "dist/index.js"