#1824: try-runtime ci checks: Migrations #2
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Migrations on Paseo | |
on: | |
pull_request: | |
branches: | |
- main | |
pull_request_target: | |
types: | |
- labeled | |
workflow_dispatch: | |
inputs: | |
runtime-package: | |
description: 'Runtime package to check migrations for' | |
required: true | |
default: 'frequency-runtime' | |
runtime-uri: | |
description: 'URI of the runtime to check migrations for' | |
required: true | |
default: 'wss://0.rpc.testnet.amplica.io:443' | |
jobs: | |
check-migrations: | |
name: Check Migrations on Paseo | |
continue-on-error: false | |
runs-on: ubicloud-standard-8 | |
container: ghcr.io/frequency-chain/frequency/ci-base-image:1.3.1 | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Run Check Migrations Action | |
uses: ./.github/workflows/common/try-runtime-migrations | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
runtime-package: "frequency-runtime" | |
runtime-uri: "wss://0.rpc.testnet.amplica.io:443" |