Skip to content

Commit

Permalink
fixing env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasSUSE committed Dec 12, 2024
1 parent 95eb836 commit 70e7b7c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/auto-bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,11 @@ jobs:
- name: Git Add, Commit, Push Changes
run: |
git add .
git commit -m "Auto bump chart version for ${env.CHART}"
git commit -m "Auto bump chart version for ${{ env.CHART }}"
git push origin ${{ env.BRANCH }}
- name: Create Pull Request
run: |
gh auth login --with-token < ${{ secrets.GITHUB_TOKEN }}
gh pr create --base ${{ env.BRANCH }} --head ${{ github.sha }} --title "[${env.BRANCH}] auto bump: ${env.CHART}" --body "This PR auto-bumps the chart version for ${env.CHART}"
gh pr create --base ${{ env.BRANCH }} --head ${{ github.sha }} --title "[${{ env.BRANCH }}] auto bump: ${{ env.CHART }}" --body "This PR auto-bumps the chart version for ${{ env.CHART }}"

0 comments on commit 70e7b7c

Please sign in to comment.