-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (28 loc) · 900 Bytes
/
action.yml
File metadata and controls
31 lines (28 loc) · 900 Bytes
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
name: 'Clone to Solid Pod'
description: 'Clones the contents of a project to a Solid Pod'
author: 'Jackson Morgan'
inputs:
REFRESH_TOKEN:
description: 'The refresh token retrieved from @input/generate-oidc-token'
required: true
CLIENT_ID:
description: 'The client id retrieved from @input/generate-oidc-token'
required: true
CLIENT_SECRET:
description: 'The client secret retrieved from @input/generate-oidc-token'
required: true
OIDC_ISSUER:
description: 'The oidc issuer retrieved from @inrupt/generate-oidc-token'
required: true
INPUT_PATH:
description: 'The sub-folder of the github repo to clone. If none is provided it uses root.'
required: true
TARGET_CONTAINER:
description: 'The container the Pod will write to.'
required: true
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'upload-cloud'
color: 'purple'