-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
24 lines (24 loc) · 908 Bytes
/
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
name: "crucible-ci get userenvs"
description: "Gets a list of userenvs from rickshaw"
inputs:
rickshaw-directory:
description: "Where is the rickshaw repository to query for userenvs"
required: true
userenv-filter:
description: "A filter to determine which userenvs should be included"
required: false
default: "all"
outputs:
userenvs:
description: "The list of userenvs that were found"
value: ${{ steps.generate-userenvs-list.outputs.userenvs }}
runs:
using: "composite"
steps:
- name: "Validate rickshaw-directory"
shell: bash
run: ${{ github.action_path }}/validate-inputs.sh ${{ inputs.rickshaw-directory }} ${{ inputs.userenv-filter }}
- name: "Generate userenvs list"
id: generate-userenvs-list
shell: bash
run: ${{ github.action_path }}/generate-userenv-list.sh ${{ inputs.rickshaw-directory }} ${{ inputs.userenv-filter }}