ci: add a way to pass contracts repository ref (#260)

This commit is contained in:
Slava 2025-07-28 13:47:50 +03:00 committed by GitHub
parent e22799e1f8
commit a86575b262
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,6 +21,11 @@ on:
required: false
default: https://public.sepolia.rpc.status.network
type: string
contracts_ref:
description: "Contracts ref: blank = current branch"
required: false
type: string
default: ''
env:
@ -35,7 +40,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
ref: ${{ inputs.contracts_ref }}
- uses: actions/setup-node@v4
with: