From eca09a67d1e5421d385f9c51d5e7cd1a582bfd21 Mon Sep 17 00:00:00 2001 From: Lere Williams Date: Thu, 28 Sep 2023 19:53:45 -0700 Subject: [PATCH] Fix test of local action in CI workflow --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5424ac7..6943a6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,8 +53,11 @@ jobs: id: test-action uses: ./ with: - milliseconds: 1000 + token: ${{ secrets.GITHUB_TOKEN }} - name: Print Output id: output - run: echo "${{ steps.test-action.outputs.time }}" + run: | + echo Score: "${{ steps.test-action.outputs.score }}" + echo Category: "${{ steps.test-action.outputs.score }}" +