File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed
Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change 66 echo " Pruning old images"
77 podman image prune --force
88
9- # NOTE(gibi): The --update-not-scheduled casues that renovate
9+ # NOTE: (dprince) openstack-operator requires skopeo (and wget for now)
10+ mkdir -p custom_renovate
11+ pushd custom_renovate
12+ cat << EOF_CAT > Dockerfile
13+ FROM renovate:latest
14+ USER root
15+ RUN apt-get update
16+ RUN apt-get install -y skopeo wget file
17+ USER ubuntu
18+ EOF_CAT
19+ popd
20+ podman build --pull=always custom_renovate -t renovate:local
21+
22+ # NOTE(gibi): The --update-not-scheduled causes that renovate
1023 # will only auto rebase its PRs during our pre-defined schedule
1124 # so it won't do rebase at every renovater run if the base
1225 # branch changes
1326
1427 echo " Running Renovate..."
15- podman run --rm --pull=always \
16- renovate /renovate \
28+ podman run --rm \
29+ localhost /renovate:local \
1730 --token=" ${RENOVATE_TOKEN} " \
1831 --git-author=
" OpenStack K8s CI <[email protected] >" \
1932 --update-not-scheduled=false \
You can’t perform that action at this time.
0 commit comments