Skip to content

Commit

Permalink
tmp test failing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlanabrennan committed Aug 30, 2023
1 parent c54e29d commit 9396cfd
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,31 @@ jobs:
-t $DOCKER_IMAGE_NAME:$DOCKER_IMAGE_TAG \
-t $DOCKER_IMAGE_NAME:latest \
.
- name: TEST - Update version helm chart
run: |
yq e -i '.version="test"' ${{ env.CHART_DIRECTORY }}/Chart.yaml
echo $(yq eval '.appVersion' ${{ env.CHART_DIRECTORY }}/Chart.yaml)
- name: TEST - Configure Git
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
- name: Commit Changes
run: |
git checkout -b k8s-agent-bot/update-chart-version-${{ github.sha }} origin/main
git branch -a
git add ${{ env.CHART_DIRECTORY }}/Chart.yaml
git commit -m "Update version and appVersion"
- name: TEST - Push Changes
run: git push origin k8s-agent-bot/update-chart-version-${{ github.sha }}

- name: Open pull request
run: gh pr create -B main -H k8s-agent-bot/update-chart-version-${{ github.sha }} --title 'Bump appVersion' --body 'Bumping appVersion'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


notify-failure:
if: ${{ always() && failure() }}
Expand Down

0 comments on commit 9396cfd

Please sign in to comment.