diff --git a/.github/workflows/on-pr.yml b/.github/workflows/on-pr.yml index c570dd7..809b9b2 100644 --- a/.github/workflows/on-pr.yml +++ b/.github/workflows/on-pr.yml @@ -32,3 +32,5 @@ jobs: 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: + GH_PAT: ${{secrets.GH_PAT}} diff --git a/.github/workflows/on-publish.yml b/.github/workflows/on-publish.yml index 348b76b..32bc92e 100644 --- a/.github/workflows/on-publish.yml +++ b/.github/workflows/on-publish.yml @@ -9,6 +9,8 @@ jobs: 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: + GH_PAT: ${{secrets.GH_PAT}} build: name: Run docker build runs-on: ubuntu-latest diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 85af609..3977299 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,6 +11,9 @@ on: ssz-data-ref: required: false type: string + secrets: + GH_PAT: + required: true env: stack-orchestrator-ref: ${{ inputs.stack-orchestrator-ref || 'develop' }}