From dcaff46325954767338b16da5d1515d29223f08e Mon Sep 17 00:00:00 2001 From: Egor_P <egor@parity.io> Date: Wed, 16 Aug 2023 10:51:13 +0200 Subject: [PATCH] Fix release notes generation (#2868) (#3019) --- cumulus/scripts/ci/changelog/bin/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cumulus/scripts/ci/changelog/bin/changelog b/cumulus/scripts/ci/changelog/bin/changelog index 6fe7fcec528..6cd012a29ed 100755 --- a/cumulus/scripts/ci/changelog/bin/changelog +++ b/cumulus/scripts/ci/changelog/bin/changelog @@ -29,8 +29,8 @@ ENV['REF2'] = ref2 gh_cumulus = SubRef.new(format('%<owner>s/%<repo>s', { owner: owner, repo: repo })) -polkadot_ref1 = gh_cumulus.get_dependency_reference(ref1, 'polkadot-client') -polkadot_ref2 = gh_cumulus.get_dependency_reference(ref2, 'polkadot-client') +polkadot_ref1 = gh_cumulus.get_dependency_reference(ref1, 'polkadot-primitives') +polkadot_ref2 = gh_cumulus.get_dependency_reference(ref2, 'polkadot-primitives') substrate_ref1 = gh_cumulus.get_dependency_reference(ref1, 'sp-io') substrate_ref2 = gh_cumulus.get_dependency_reference(ref2, 'sp-io') -- GitLab