From 3ce926e955ce8d2d2be1410f5efbdf1d48ed3d1d Mon Sep 17 00:00:00 2001 From: Christian Llontop Date: Sat, 8 Jun 2024 18:17:50 -0500 Subject: [PATCH] Updated workflow files to pass CODECOV_TOKEN as input --- .github/workflows/ci.yml | 2 +- .github/workflows/test.yml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 179f7fa..c8546c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,5 +16,5 @@ concurrency: jobs: test: uses: ./.github/workflows/test.yml - secrets: + with: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 054f357..4384a15 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,6 +2,10 @@ name: Build and Test on: workflow_call: + inputs: + CODECOV_TOKEN: + required: true + type: string jobs: build_and_test: