build(deps): bump stefanzweifel/git-auto-commit-action from 7.0.0 to 7.1.0 #180
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_target: | |
| types: | |
| - labeled | |
| workflow_dispatch: | |
| # Set default permissions as restrictive | |
| permissions: | |
| contents: read | |
| packages: read | |
| jobs: | |
| check-migrations: | |
| if: github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'change/storage-migration') | |
| name: Check Migrations on Paseo | |
| continue-on-error: false | |
| runs-on: ubicloud-standard-8 | |
| container: ghcr.io/frequency-chain/frequency/ci-base-image:1.5.8 | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| - name: Run Check Migrations Action | |
| uses: ./.github/workflows/common/try-runtime-migrations | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| runtime-package: "frequency-runtime" | |
| runtime-uri: ${{ vars.E2E_TESTNET_PASEO_RPC }} |