-
Notifications
You must be signed in to change notification settings - Fork 37
/
action.yml
37 lines (37 loc) · 1.04 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
name: Test plugin
description: Test your asdf plugin
author: Victor Borja <[email protected]>
runs:
using: node20
main: main.js
inputs:
command:
description:
Command used to test your plugin tool. Something with --version or --help
required: true
plugin:
description: Plugin name to use. Defaults to repository name without asdf-
required: false
version:
description: Tool version to test. Defaults to `latest`
required: false
default: latest
giturl:
description: Plugin repository. Defaults to current github repository
required: false
gitref:
description:
Branch or commit from repository to test. Defaults to current commit.
required: false
asdf_branch:
description: asdf branch to clone
required: false
default: master
skip_install:
description: setup env without installing asdf
required: false
default: false
github_token:
description: Token used to avoid rate limit when asdf calls the GitHub API
required: false
default: ${{ github.token }}