-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Automatic update of base-image in CI #908
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an auto-approve of an auto-PR.
[APPROVALNOTIFIER] This PR is APPROVED Approval requirements bypassed by manually added approval. This pull-request has been approved by: sefkhet-abwy[bot] The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
[APPROVALNOTIFIER] This PR is APPROVED Approval requirements bypassed by manually added approval. This pull-request has been approved by: sefkhet-abwy[bot] The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
1 similar comment
[APPROVALNOTIFIER] This PR is APPROVED Approval requirements bypassed by manually added approval. This pull-request has been approved by: sefkhet-abwy[bot] The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/test all |
/retest aicoe-ci/build-check |
@VannTen: The
Use In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/test all
|
@goern @harshad16
I think this PR (more precisely, its branch is causing the other to
fail)
See https://tekton.operate-first.cloud/#/namespaces/opf-ci-pipelines/pipelineruns/aicoe-pipelinerun-0868e1af-f680-4d64-ade8-a07d556a8233?pipelineTask=base-image-update-run&step=rebase
```console
+ git config --local user.email ***@***.***
+ git config --local user.name sesheta
+ git remote set-url origin ***@***.***:thoth-station/management-api.git
+ git checkout -b aicoe-ci-base-image-updater
Switched to a new branch 'aicoe-ci-base-image-updater'
+ export 'GIT_SSH_COMMAND=ssh -i /tekton/home/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no'
+ GIT_SSH_COMMAND='ssh -i /tekton/home/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no'
+ git add .
+ git commit -m ':ship: Bump up base image initialized in CI.'
[aicoe-ci-base-image-updater ca9b9aa] 🚢 Bump up base image initialized in CI.
1 file changed, 1 insertion(+), 1 deletion(-)
+ git pull --rebase origin master
Warning: Permanently added 'github.com,140.82.113.4' (ECDSA) to the list of known hosts.
From github.com:thoth-station/management-api
* branch master -> FETCH_HEAD
Current branch aicoe-ci-base-image-updater is up to date.
+ git push -f origin aicoe-ci-base-image-updater
Warning: Permanently added 'github.com,140.82.113.4' (ECDSA) to the list of known hosts.
remote: error: GH006: Protected branch update failed for refs/heads/aicoe-ci-base-image-updater.
remote: error: Cannot force-push to this protected branch
To github.com:thoth-station/management-api.git
! [remote rejected] aicoe-ci-base-image-updater -> aicoe-ci-base-image-updater (protected branch hook declined)
error: failed to push some refs to 'github.com:thoth-station/management-api.git'
```
Should we un protect the branch or use a merge instead of rebase (I'd
vote for the latter) ?
|
we should update the prow config, to unprotect such branch. |
Automatic update of base-image in CI.