From e2017811d5a68569ee3b6103756126e070edf279 Mon Sep 17 00:00:00 2001 From: Manuel Amador Date: Thu, 23 Jan 2025 15:54:21 +0100 Subject: [PATCH] Fix invalid variable vars. --- .github/workflows/update-k8s-deployments/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-k8s-deployments/action.yaml b/.github/workflows/update-k8s-deployments/action.yaml index 470369a..17815b6 100644 --- a/.github/workflows/update-k8s-deployments/action.yaml +++ b/.github/workflows/update-k8s-deployments/action.yaml @@ -69,10 +69,10 @@ runs: github-token: ${{ inputs.push-token }} script: | const result = await github.rest.pulls.create({ - title: '[nomrbot] - New ${{ inputs.component }} release from ${{ vars.GITHUB_REPOSITORY }}', + title: '[nomrbot] - New ${{ inputs.component }} release from ${{ github.repository }}', owner: 'dfinity-ops', repo: 'k8s', head: '${{ steps.create-rollout-commit.outputs.k8s_branch }}', base: 'main', - body: 'Updating container images to incorporate [these changes](https://github.com/${{ vars.GITHUB_REPOSITORY }}/compare/${{ steps.create-rollout-commit.outputs.previous_ref }}..${{ steps.create-rollout-commit.outputs.source_branch }}).' + body: 'Updating container images to incorporate [these changes](https://github.com/${{ github.repository }}/compare/${{ steps.create-rollout-commit.outputs.previous_ref }}..${{ steps.create-rollout-commit.outputs.source_branch }}).' });