generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
31 lines (31 loc) · 1.02 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
name: Commit changes
description: Automatically commits changes
author: Quizlet
inputs:
token:
description: Personal access token (PAT) used to perform actions against the repository
default: ${{ github.token }}
branch:
description: Branch to commit the changes to. If not set, the target will be the default branch for the repo
required: false
message:
description: Message for the resulting commit
required: true
append-run-info:
description: Appends information about the run to the commit message
default: true
glob-patterns:
description: List of minimatch glob patterns for files to commit. Multiple patterns can be split with commas or newlines
required: true
retries:
description: Number of times to retry the commit (which may fail due to non-fastfoward upates)
default: 10
outputs:
sha:
description: SHA of the commit. Will be an empty string if there was nothing to commit.
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: git-commit
color: blue