From a1727654a811c4ed34b0b90c35d28313d0ad4986 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kai=20L=C3=BCke?= Date: Tue, 28 Jul 2020 15:12:58 +0200 Subject: [PATCH] .github: Do not create metadata/md5-cache commits --- .../third_party/coreos-overlay/.github/workflows/common.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/sdk_container/src/third_party/coreos-overlay/.github/workflows/common.sh b/sdk_container/src/third_party/coreos-overlay/.github/workflows/common.sh index da9298aef3..0c2e3a140f 100644 --- a/sdk_container/src/third_party/coreos-overlay/.github/workflows/common.sh +++ b/sdk_container/src/third_party/coreos-overlay/.github/workflows/common.sh @@ -42,11 +42,8 @@ function generate_patches() { git add ${CATEGORY_NAME}/${PKGNAME_SIMPLE} git commit -a -m "${CATEGORY_NAME}: Upgrade ${PKGNAME_DESC} ${VERSION_OLD} to ${VERSION_NEW}" - # Generate metadata after the main commit was done. - enter "${SDK_INNER_SRCDIR}/scripts/update_metadata" --commit coreos - - # Create 2 patches, one for the main ebuilds, the other for metadata changes. - git format-patch -2 HEAD + # Create a patch for the main ebuilds. + git format-patch -1 HEAD popd || exit }