-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (31 loc) · 821 Bytes
/
action.yml
File metadata and controls
31 lines (31 loc) · 821 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: 'Try Runtime'
description: 'Runs try-runtime on the specified chain and runtime'
branding:
icon: 'check-circle'
color: 'green'
inputs:
url:
description: 'URL of the node to take a snapshot from'
required: true
snap:
description: 'Path to a previously taken snapshot, if does not exists we will create it'
default: '/tmp/default.snap'
runtime:
description: 'Path to a try-runtime enabled runtime to test migrations for'
required: true
checks:
description: 'Checks to run'
default: 'all'
options:
description: 'try-runtime command line options'
default: ''
required: false
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.url }}
- ${{ inputs.snap }}
- ${{ inputs.runtime }}
- ${{ inputs.checks }}
- ${{ inputs.options }}