-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: use geonetci user to make updates to images
ensure other jobs trigger when an image digest update PR comes through
- Loading branch information
1 parent
de47816
commit f71c3a3
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,9 +15,9 @@ jobs: | |
- uses: GeoNet/setup-crane@00c9e93efa4e1138c9a7a5c594acd6c75a2fbf0c # main | ||
- name: configure system | ||
run: | | ||
git config user.name 'github-actions[bot]' | ||
git config user.email 'github-actions[bot]@users.noreply.github.com' | ||
gh auth login --with-token < <(echo ${{ secrets.GITHUB_TOKEN }}) | ||
git config user.name 'geonetci' | ||
git config user.email '[email protected]' | ||
gh auth login --with-token < <(echo ${{ secrets.GH_CI_USER_TOKEN }}) | ||
gh auth status | ||
- name: update select images | ||
run: ./hack/update-sync-image-digests.sh | ||
|
@@ -46,6 +46,7 @@ jobs: | |
TIMESTAMP: ${{ steps.branch.outputs.timestamp }} | ||
NEW_BRANCH: ${{ steps.branch.outputs.new-branch-name }} | ||
HAS_EXISTING: ${{ steps.branch.outputs.has-existing }} | ||
GH_TOKEN: ${{ secrets.GH_CI_USER_TOKEN }} | ||
run: | | ||
git add ./config.yaml | ||
git branch "${NEW_BRANCH}" | ||
|