Skip to content

Commit cac875b

Browse files
committed
Fix Dependabot filter
1 parent 628cab0 commit cac875b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/build-docker-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ docker_command=(
5454
# if we are building on GitHub actions, we can also push the resulting image
5555
# we skip pull request builds, though; regular branch builds will push the built images (if possible)
5656
# also, skip Dependabot builds, it is not allowed to push images
57-
if [[ "${GITHUB_ACTIONS:-}" != "" ]] && [[ "${GITHUB_EVENT_NAME:-}" != "pull_request" ]] && [[ "${GITHUB_ACTOR:-}" != "dependabot" ]]; then
57+
if [[ "${GITHUB_ACTIONS:-}" != "" ]] && [[ "${GITHUB_EVENT_NAME:-}" != "pull_request" ]] && [[ "${GITHUB_ACTOR:-}" != "dependabot"* ]]; then
5858
echo "Going to push built image"
5959
docker_command+=(
6060
--cache-to type=inline

0 commit comments

Comments
 (0)