@@ -79,9 +79,14 @@ steps:
79
79
- uses: asdf-vm/actions/install@v4
80
80
` ` `
81
81
82
- <!-- TODO(jthegedus) : capture action.yml options in a markdown table here. Show usage examples for each option. -->
82
+ Options are :
83
83
84
- See [action.yml](install/action.yml) inputs.
84
+ | Name | Required | Default | Description |
85
+ | -------------- | -------- | -------------------- | ------------------------------------------------------------------------------------------------------------- |
86
+ | asdf_branch | false | master (i.e. latest) | asdf branch to clone |
87
+ | skip_install | false | false | setup env without installing asdf |
88
+ | tool_versions | false | | If present, this value will be written to the .tool-versions file. |
89
+ | before_install | false | | Bash script to run after plugins are installed but before `asdf install`.<br><br>e.g., to install npm keyring |
85
90
86
91
# ## Plugin Test
87
92
@@ -94,9 +99,18 @@ steps:
94
99
command: my_tool --version
95
100
` ` `
96
101
97
- <!-- TODO(jthegedus) : capture action.yml options in a markdown table here. Show usage examples for each option. -->
102
+ Options are :
98
103
99
- See [action.yml](plugin-test/action.yml) inputs.
104
+ | Name | Required | Default | Description |
105
+ | ------------ | -------- | ----------------------------- | ------------------------------------------------------------------------- |
106
+ | asdf_branch | false | master (i.e. latest) | asdf branch to clone |
107
+ | skip_install | false | false | setup env without installing asdf |
108
+ | command | true | | Command used to test your plugin tool. Something with --version or --help |
109
+ | plugin | false | repository name without asdf- | Plugin name to use |
110
+ | version | false | latest | Tool version to test |
111
+ | giturl | false | current github repository | Plugin repository |
112
+ | gitref | false | current commit | Branch or commit from repository to test |
113
+ | github_token | false | github.token value | Token used to avoid rate limit when asdf calls the GitHub API |
100
114
101
115
# ## Setup
102
116
@@ -110,9 +124,12 @@ steps:
110
124
- uses: asdf-vm/actions/setup@v4
111
125
` ` `
112
126
113
- <!-- TODO(jthegedus) : capture action.yml options in a markdown table here. Show usage examples for each option. -->
127
+ Options are :
114
128
115
- See [action.yml](setup/action.yml) inputs.
129
+ | Name | Default | Description |
130
+ | ------------ | -------------------- | --------------------------------- |
131
+ | asdf_branch | master (i.e. latest) | asdf branch to clone |
132
+ | skip_install | false | setup env without installing asdf |
116
133
117
134
# ## Plugins Add
118
135
@@ -126,9 +143,14 @@ steps:
126
143
- uses: asdf-vm/actions/plugins-add@v4
127
144
` ` `
128
145
129
- <!-- TODO(jthegedus) : capture action.yml options in a markdown table here. Show usage examples for each option. -->
146
+ Options are :
147
+
148
+ | Name | Required | Default | Description |
149
+ | -------------- | -------- | -------------------- | ------------------------------------------------------------------------------------------------------------- |
150
+ | asdf_branch | false | master (i.e. latest) | asdf branch to clone |
151
+ | skip_install | false | false | setup env without installing asdf |
152
+ | tool_versions | false | | If present, this value will be written to the .tool-versions file. |
130
153
131
- See [action.yml](plugins-add/action.yml) inputs.
132
154
133
155
# # Miscellaneous
134
156
0 commit comments