Skip to content

Commit

Permalink
Merge pull request #355 from Gregory-Pereira/use-platform-engineering…
Browse files Browse the repository at this point in the history
…-bot

use platform-engineering-bot for image workflows
  • Loading branch information
vishnoianil authored Nov 20, 2024
2 parents efa429d + 3b9f789 commit 43a3b2d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pr-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ jobs:
- name: Commit and push bump QA UI Image manifest
run: |-
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git remote add origin-push https://github-actions[bot]:${{ secrets.GITHUB_TOKEN }}@github.com/instructlab/ui.git
git config user.name "platform-engineering-bot"
git config user.email "platform-engineering@redhat.com"
git remote add origin-push https://platform-engineering-bot:${{ secrets.BOT_PAT }}@github.com/instructlab/ui.git
git add deploy/k8s/overlays/openshift/qa/kustomization.yaml
git commit -m "[CI AUTOMATION]: Bumping QA UI image to tag: pr-${{ steps.get_pr_number.outputs.result }}" -s
git push origin-push main
Expand Down Expand Up @@ -311,9 +311,9 @@ jobs:
- name: Commit and push bump QA PS Image manifest
run: |-
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git remote add origin-push https://github-actions[bot]:${{ secrets.GITHUB_TOKEN }}@github.com/instructlab/ui.git
git config user.name "platform-engineering-bot"
git config user.email "platform-engineering@redhat.com"
git remote add origin-push https://platform-engineering-bot:${{ secrets.BOT_PAT }}@github.com/instructlab/ui.git
git add deploy/k8s/overlays/openshift/qa/kustomization.yaml
git commit -m "[CI AUTOMATION]: Bumping QA PS image to tag: pr-${{ steps.get_pr_number.outputs.result }}" -s
git push origin-push main
12 changes: 6 additions & 6 deletions .github/workflows/release-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ jobs:
- name: Commit and push bump to Prod UI image manifest
run: |-
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git remote add origin-push https://github-actions[bot]:${{ secrets.GITHUB_TOKEN }}@github.com/instructlab/ui.git
git config user.name "platform-engineering-bot"
git config user.email "platform-engineering@redhat.com"
git remote add origin-push https://platform-engineering-bot:${{ secrets.BOT_PAT }}@github.com/instructlab/ui.git
git add deploy/k8s/overlays/openshift/prod/kustomization.yaml
git commit -m "[CI AUTOMATION]: Bumping Prod UI image to tag: ${{ steps.get_release_tag.outputs.RELEASE_TAG }}" -s
git push origin-push main
Expand Down Expand Up @@ -247,9 +247,9 @@ jobs:
- name: Commit and push bump to Prod PS image manifest
run: |-
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git remote add origin-push https://github-actions[bot]:${{ secrets.GITHUB_TOKEN }}@github.com/instructlab/ui.git
git config user.name "platform-engineering-bot"
git config user.email "platform-engineering@redhat.com"
git remote add origin-push https://platform-engineering-bot:${{ secrets.BOT_PAT }}@github.com/instructlab/ui.git
git add deploy/k8s/overlays/openshift/prod/kustomization.yaml
git commit -m "[CI AUTOMATION]: Bumping Prod PS image to tag: ${{ steps.get_release_tag.outputs.RELEASE_TAG }}" -s
git push origin-push main

0 comments on commit 43a3b2d

Please sign in to comment.