Capture the unique identifier everywhere its needed. #51

Merged
abdulrabbani00 merged 8 commits from feature/50-graceful-historic-shutdown into develop 2022-06-03 16:47:13 +00:00
3 changed files with 7 additions and 0 deletions
Showing only changes of commit c64df8903c - Show all commits

View File

@ -32,3 +32,5 @@ jobs:
stack-orchestrator-ref: ${{ github.event.inputs.stack-orchestrator-ref }} stack-orchestrator-ref: ${{ github.event.inputs.stack-orchestrator-ref }}
ipld-ethcl-db-ref: ${{ github.event.inputs.ipld-ethcl-db-ref }} ipld-ethcl-db-ref: ${{ github.event.inputs.ipld-ethcl-db-ref }}
ssz-data-ref: ${{ github.event.inputs.ssz-data-ref }} ssz-data-ref: ${{ github.event.inputs.ssz-data-ref }}
secrets:
GH_PAT: ${{secrets.GH_PAT}}

View File

@ -9,6 +9,8 @@ jobs:
stack-orchestrator-ref: ${{ github.event.inputs.stack-orchestrator-ref }} stack-orchestrator-ref: ${{ github.event.inputs.stack-orchestrator-ref }}
ipld-ethcl-db-ref: ${{ github.event.inputs.ipld-ethcl-db-ref }} ipld-ethcl-db-ref: ${{ github.event.inputs.ipld-ethcl-db-ref }}
ssz-data-ref: ${{ github.event.inputs.ssz-data-ref }} ssz-data-ref: ${{ github.event.inputs.ssz-data-ref }}
secrets:
GH_PAT: ${{secrets.GH_PAT}}
build: build:
name: Run docker build name: Run docker build
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@ -11,6 +11,9 @@ on:
ssz-data-ref: ssz-data-ref:
required: false required: false
type: string type: string
secrets:
GH_PAT:
required: true
env: env:
stack-orchestrator-ref: ${{ inputs.stack-orchestrator-ref || 'develop' }} stack-orchestrator-ref: ${{ inputs.stack-orchestrator-ref || 'develop' }}