File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,12 @@ jobs:
3030 - name : Create release branch
3131 run : |
3232 version=$(.github/scripts/get-version.sh)
33- if [[ $version =~ ^([0-9]+)\.([0-9]+)\.0 $ ]]; then
33+ if [[ $version =~ ^([0-9]+)\.([0-9]+)\.([0-9]+) $ ]]; then
3434 release_branch_name="release/v${version}"
35- git ls-remote --exit-code -- heads origin refs/heads/$release_branch_name
36- if [ "$?" == "0 " ] ; then
35+ release_branch_exists=$( git ls-remote --heads origin refs/heads/$release_branch_name)
36+ if [[ $release_branch_exists != " " ]] ; then
3737 echo "release branch $release_branch_name already exists"
38- exit 1
38+ exit 1
3939 fi
4040 else
4141 echo "unexpected version: $version"
Original file line number Diff line number Diff line change 11# Changelog
22
33## Unreleased
4+
5+ * Move to ` io.opentelemetry.semnconv.* ` package
6+ ([ #14 ] ( https://github.com/open-telemetry/semantic-conventions-java/pull/14 ) )
7+ * Update to semantic conventions v1.21.0
8+ ([ #9 ] ( https://github.com/open-telemetry/semantic-conventions-java/pull/9 ) )
You can’t perform that action at this time.
0 commit comments