-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.qmd
78 lines (60 loc) · 1.64 KB
/
README.qmd
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
title: ns-list
format: gfm
---
```{r}
#| include: false
library(tidyverse)
# action <- yaml::read_yaml("ns-list/action.yml")
action <- yaml::read_yaml("action.yml")
```
`r action$description`
## Usage
This action will run `viash ns list`. See the reference documentation on [ns list](https://viash.io/reference/viash/ns.html) for more info on each of the arguments.
We recommend using a Linux or MacOS runner if possible.
### Inputs available
```{r}
#| echo: false
lines <- map_chr(names(action$inputs), function(name) {
input <- action$inputs[[name]]
required <- ifelse (input$required %||% FALSE, "required", "optional")
glue::glue("* `{name}`: - _{required}_. {input$description}")
})
knitr::asis_output(paste0(lines, collapse = "\n"))
```
### Outputs
```{r}
#| echo: false
lines <- map_chr(names(action$outputs), function(name) {
output <- action$outputs[[name]]
glue::glue("* `{name}`: {output$description}")
})
knitr::asis_output(paste0(lines, collapse = "\n"))
```
## Examples
```yaml
name: demo of viash ns list
on:
branch: main
jobs:
viash-linux:
runs-on: ubuntu-latest
steps:
- uses: viash-io/viash-actions/setup@v1
- id: ns_list
uses: viash-io/viash-actions/ns-list@v1
- run: |
# do something with the output yaml
echo "${{steps.ns_list.outputs.output}}"
viash-macos:
runs-on: macos-latest
steps:
- uses: viash-io/viash-actions/setup@v1
- id: ns_list
uses: viash-io/viash-actions/ns-list@v1
with:
format: json
- run: |
# do something with the output json
echo "${{steps.ns_list.outputs.output}}"
```