We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b324886 commit 7febc17Copy full SHA for 7febc17
actions/docker/scan-docker-repo/create-plan.sh
@@ -60,11 +60,14 @@ if [ ! -d "${target_dir}" ]; then
60
mkdir -p "${target_dir}"
61
fi
62
63
+if [ !-f "${SKIPPED_FILE}" ]; then
64
+ touch "${SKIPPED_FILE}"
65
+fi
66
+
67
# Split list of tags into ${chunks_count} files inside ${target_dir}
68
# Files are rotated in round-robin manner to avoid large images bias: if some software is large,
69
# it is sperad across several chunks and is treated by CI in parallel, providing better
70
# execution time equality for all chunks.
-
71
"${script_dir}/list-images.sh" "${registry}" "${repository}" |
72
skip_ignored |
73
awk \
0 commit comments