Update _backplane_mirror_index.sh with klusterlet exclusions (#212) #162
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: update-image-builder | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
update-image-builder: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Push commit to image-builder repo | |
run: | | |
git clone "https://${{ secrets.PROW_BOT_TOKEN }}@github.com/stolostron/image-builder.git" | |
cd image-builder | |
git config --global user.email "[email protected]" | |
git config --global user.name "ACM CICD" | |
echo "$GITHUB_REPOSITORY@$GITHUB_SHA" > .trigger-openshift-ci | |
git commit -am "update .trigger-openshift-ci" --quiet | |
git push --quiet |