Skip to content

Validate: b43179bd776ea1592da32d976fc3149028231157👀 validate nothing #1

Validate: b43179bd776ea1592da32d976fc3149028231157👀 validate nothing

Validate: b43179bd776ea1592da32d976fc3149028231157👀 validate nothing #1

name: ⚙️ Validate
run-name: "Validate: ${{ github.sha }}${{ (!inputs.infra && !inputs.app) && '👀 validate nothing' || ''}}${{ inputs.infra && ' ✓  infra' || '' }}${{ inputs.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-rust:
description: "Validate Staging Rust"
default: false
required: true
type: boolean
check-prod-rust:
description: "Validate Prod Rust"
default: false
required: true
type: boolean
check-staging-swift:
description: "Validate Staging Swift"
default: false
required: true
type: boolean
check-prod-swift:
description: "Validate Prod Swift"
default: false
required: true
type: boolean
permissions:
contents: read
checks: write
id-token: write
jobs:
ci:

Check failure on line 43 in .github/workflows/dispatch_validate.yml

View workflow run for this annotation

GitHub Actions / ⚙️ Validate

Invalid workflow file

The workflow is not valid. .github/workflows/dispatch_validate.yml (Line: 43, Col: 3): Error calling workflow 'WalletConnect/notify-server/.github/workflows/sub-ci.yml@b43179bd776ea1592da32d976fc3149028231157'. The workflow is requesting 'issues: read, pull-requests: write', but is only allowed 'issues: none, pull-requests: none'.
name: CI
secrets: inherit
uses: ./.github/workflows/sub-ci.yml
with:
check-infra: ${{ inputs.check-infra }}
check-app: ${{ inputs.check-app }}
validate-staging-health:
name: Validate - Staging - Health
uses: ./.github/workflows/sub-validate-health.yml
secrets: inherit
with:
stage: staging
stage-url: https://staging.${{ vars.SUBDOMAIN_NAME }}.walletconnect.com/health
validate-prod-health:
name: Validate - Prod - Health
uses: ./.github/workflows/sub-validate-health.yml
secrets: inherit
with:
stage: prod
stage-url: https://${{ vars.SUBDOMAIN_NAME }}.walletconnect.com/health
validate-staging-rust:
name: Validate - Staging - Rust
if: ${{ inputs.check-staging }}
uses: ./.github/workflows/sub-validate-rust.yml
secrets: inherit
with:
stage: staging
stage-url: https://staging.${{ vars.SUBDOMAIN_NAME }}.walletconnect.com/health
validate-prod-rust:
name: Validate - Prod - Rust
if: ${{ inputs.check-prod }}
uses: ./.github/workflows/sub-validate-rust.yml
secrets: inherit
with:
stage: prod
stage-url: https://${{ vars.SUBDOMAIN_NAME }}.walletconnect.com/health
validate-staging-swift:
name: Validate - Staging - Swift
if: ${{ inputs.check-staging }}
uses: ./.github/workflows/sub-validate-swift.yml
secrets: inherit
with:
stage: staging
stage-url: https://staging.${{ vars.SUBDOMAIN_NAME }}.walletconnect.com/health
validate-prod-swift:
name: Validate - Prod - Swift
if: ${{ inputs.check-prod }}
uses: ./.github/workflows/sub-validate-swift.yml
secrets: inherit
with:
stage: prod
stage-url: https://${{ vars.SUBDOMAIN_NAME }}.walletconnect.com/health