From 2b403d7aa735dc19fb0b6edbcc7ddd0eb64d27d4 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Thu, 22 Aug 2024 15:38:05 +1200 Subject: [PATCH] fix: Correct use env variables --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a499bb3..0875b56 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -83,7 +83,7 @@ jobs: if: success() with: url: '${{ vars.NTFY_URL }}' - title: Workflow success for ${GITHUB_REPOSITORY} + title: Workflow success for ${{ env.GITHUB_REPOSITORY }} topic: 'ci-status' priority: 4 tags: +1,partying_face,action,successfully,completed @@ -98,7 +98,7 @@ jobs: if: failure() with: url: '${{ vars.NTFY_URL }}' - title: Workflow failed for ${GITHUB_REPOSITORY} + title: Workflow failed for ${{ env.GITHUB_REPOSITORY }} topic: 'ci-status' priority: 5 tags: -1,skull,action,failed