Skip to content

Validate: 3b0c4ddf9477536ec19f664fe17b4ff29844a55e ✓  infra ✓  app #10

Validate: 3b0c4ddf9477536ec19f664fe17b4ff29844a55e ✓  infra ✓  app

Validate: 3b0c4ddf9477536ec19f664fe17b4ff29844a55e ✓  infra ✓  app #10

name: ⚙️ Validate
run-name: "Validate: ${{ github.sha }}${{ (!inputs.check-infra && !inputs.check-app) && '👀 validate nothing' || ''}}${{ inputs.check-infra && ' ✓  infra' || '' }}${{ inputs.check-app && ' ✓  app' || '' }}"
on:
workflow_dispatch:
inputs:
check-infra:
description: "Validate Infra"
default: true
required: true
type: boolean
check-app:
description: "Validate App"
default: true
required: true
type: boolean
check-staging:
description: "Validate Staging"
default: false
required: true
type: boolean
check-prod:
description: "Validate Prod"
default: false
required: true
type: boolean
permissions:
contents: read
checks: write
id-token: write
jobs:
ci:
name: CI
uses: WalletConnect/ci_workflows/.github/workflows/[email protected]
secrets: inherit
with:
check-infra: ${{ inputs.check-infra }}
check-app: ${{ inputs.check-app }}
validate-staging:
name: Validate - Staging
if: ${{ inputs.check-staging }}
uses: ./.github/workflows/sub-validate.yml
secrets: inherit
with:
stage: staging
stage-url: https://staging.${{ vars.SUBDOMAIN_NAME }}.walletconnect.com
validate-prod:
name: Validate - Prod
if: ${{ inputs.check-prod }}
uses: ./.github/workflows/sub-validate.yml
secrets: inherit
with:
stage: prod
stage-url: https://${{ vars.SUBDOMAIN_NAME }}.walletconnect.com