e3b4fad3c7
* Capture the unique identifier everywhere its needed. * Handle graceful shutdown for historical processing * Update flags and minor shutdown updates * Update checkout statement for historic * update cicd pipeline * Add secret * Use deploy-key instead of personal PAT * update variables
37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
name: Test Application On PR
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
stack-orchestrator-ref:
|
|
description: "The branch, commit or sha from stack-orchestrator to checkout"
|
|
required: false
|
|
default: "main"
|
|
ipld-ethcl-db-ref:
|
|
description: "The branch, commit or sha from ipld-ethcl-db to checkout"
|
|
required: false
|
|
default: "main"
|
|
ssz-data-ref:
|
|
description: "The branch, commit or sha from ssz-data to checkout"
|
|
required: false
|
|
default: "main"
|
|
pull_request:
|
|
paths:
|
|
- "!**.md"
|
|
- "!.gitignore"
|
|
- "!LICENSE"
|
|
- "!.github/workflows/**"
|
|
- ".github/workflows/on-pr.yml"
|
|
- ".github/workflows/tests.yml"
|
|
- "**"
|
|
|
|
jobs:
|
|
trigger-tests:
|
|
uses: ./.github/workflows/tests.yml
|
|
with:
|
|
stack-orchestrator-ref: ${{ github.event.inputs.stack-orchestrator-ref }}
|
|
ipld-ethcl-db-ref: ${{ github.event.inputs.ipld-ethcl-db-ref }}
|
|
ssz-data-ref: ${{ github.event.inputs.ssz-data-ref }}
|
|
secrets:
|
|
GHA_KEY: ${{secrets.GHA_KEY}}
|