We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bd531b commit a70a287Copy full SHA for a70a287
.github/workflows/check-migrations.yml
@@ -1,15 +1,24 @@
1
-# .github/workflows/check-migrations-on-paseo.yml
2
-
3
name: Check Migrations on Paseo
4
5
on:
6
pull_request_target:
7
types:
8
- labeled
+ workflow_dispatch:
+ inputs:
9
+ runtime-package:
10
+ description: 'Runtime package to check migrations for'
11
+ required: true
12
+ default: 'frequency-runtime'
13
+ runtime-uri:
14
+ description: 'URI of the runtime to check migrations for'
15
16
+ default: 'wss://0.rpc.testnet.amplica.io:443'
17
+
18
19
jobs:
20
check-migrations:
- if: contains(github.event.pull_request.labels.*.name, 'paseo-migration')
21
+ if: contains(github.event.pull_request.labels.*.name, 'change/storage-migration')
22
23
continue-on-error: false
24
runs-on: ubicloud-standard-8
0 commit comments