From c64df8903ced38c66acea97c711355fb8b2ecd43 Mon Sep 17 00:00:00 2001 From: Abdul Rabbani Date: Fri, 3 Jun 2022 11:59:11 -0400 Subject: [PATCH] Add secret --- .github/workflows/on-pr.yml | 2 ++ .github/workflows/on-publish.yml | 2 ++ .github/workflows/tests.yml | 3 +++ 3 files changed, 7 insertions(+) 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' }}