We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cfd6d6a + 22ec03b commit 29e5fbdCopy full SHA for 29e5fbd
ci/detect_component_bump
@@ -22,7 +22,11 @@ if git log -1 -m --name-only --pretty="" | grep -q components/${comp}/idf_compon
22
if [ $(git tag -l "$tag") ]; then
23
echo "${comp}: version (${tag}) already exits"
24
else
25
+ # skip components that do not have changelog
26
+ [ -f components/${comp}/CHANGELOG.md ] || continue
27
+
28
echo "${comp}: Component version has been updated to ${version}"
29
30
# creates release notes from the last entry (between first two "## sections")
31
awk '/^## \[/{a++};{if(a==1){print}}' components/${comp}/CHANGELOG.md > release_notes.md
32
0 commit comments