Add KPK USDC RWA Liquidity vault #748
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: Validate Pull Request | |
| on: | |
| pull_request_target: | |
| branches: | |
| - main | |
| jobs: | |
| validate-pr: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Detect changed files | |
| uses: yumemi-inc/changed-files@50f2544ad88b4f274eace9689431b7281132304c # pin@v3.2.0 | |
| id: changes | |
| with: | |
| exclude-statuses: 'removed' | |
| - name: Checkout repository | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # pin@v7.0.0 | |
| with: | |
| allow-unsafe-pr-checkout: true | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| - name: Checkout upstream | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # pin@v7.0.0 | |
| with: | |
| allow-unsafe-pr-checkout: true | |
| path: upstream | |
| ref: main | |
| repository: ${{ github.event.pull_request.base.repo.full_name }} | |
| - name: Validate | |
| if: steps.changes.outputs.exists == 'true' | |
| uses: symbioticfi/metadata-validation-scripts@main | |
| with: | |
| files: ${{ steps.changes.outputs.files }} | |
| issue: ${{ github.event.number }} | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| chain-id: 1 | |
| rpc-url: https://ethereum-rpc.publicnode.com | |
| upstream-checkout-path: upstream | |
| network-registry: "0xc773b1011461e7314cf05f97d95aa8e92c1fd8aa" | |
| operator-registry: "0xad817a6bc954f678451a71363f04150fdd81af9f" | |
| vault-registry: "0xaeb6bdd95c502390db8f52c8909f703e9af6a346" | |
| adapter-registry: "0x0462B857dD6AC1FBc22f84f9f73Dd74AE7721E5B" |