generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 17
/
action.yml
46 lines (46 loc) · 1.65 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
name: 'Setup Git for Windows SDK'
description: 'Set up an environment to develop Git for Windows'
author: 'Johannes Schindelin'
branding:
icon: fast-forward
color: blue
inputs:
flavor:
required: false
description: 'The subset (if any) of the SDK: minimal, makepkg-git, build-installers, or full'
default: 'minimal'
architecture:
required: false
description: 'The architecture of the SDK: x86_64, i686 or aarch64. Note that "aarch64" only supports the "full" flavor for now.'
default: 'x86_64'
msys:
required: false
description: 'Whether to start in MSYS mode (defaults to false)'
default: 'false'
path:
required: false
description: 'Where to write the SDK files'
default: ''
cleanup:
required: false
description: 'Whether to clean up SDK files. This is only needed on self-hosted runners that are reused for multiple jobs.'
default: 'false'
verbose:
required: false
description: 'Whether to log files as they are extracted'
default: '250'
cache:
required: false
description: 'Use @actions/cache to accelerate this Action'
default: 'auto'
github-token:
description: >
Personal access token (PAT) used to call into GitHub's REST API.
We recommend using a service account with the least permissions necessary.
Also when generating a new PAT, select the least scopes necessary.
[Learn more about creating and using encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)
default: ${{ github.token }}
runs:
using: 'node20'
main: 'dist/index.js'
post: 'dist/index.js'