Skip to content

Commit

Permalink
Merge pull request #79 from dfinity/improverollout
Browse files Browse the repository at this point in the history
Fix invalid variable vars.
  • Loading branch information
DFINITYManu authored Jan 23, 2025
2 parents d5babbf + e201781 commit 45630a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-k8s-deployments/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}).'
});

0 comments on commit 45630a9

Please sign in to comment.