diff --git a/.github/workflows/update-repo-stuff.yml b/.github/workflows/update-repo-stuff.yml index e3ed327..14ac43b 100644 --- a/.github/workflows/update-repo-stuff.yml +++ b/.github/workflows/update-repo-stuff.yml @@ -47,7 +47,7 @@ jobs: run: | git log --format=%B -n 1 $GITHUB_SHA | head -1 > /tmp/commit_msg - NUMBER=$( cat /tmp/commit_msg | head -1 | tr -cd [:digit:] ) + NUMBER=$( cat /tmp/commit_msg | head -1 | sed 's/.*(\#\(.*\))/\1/' ) echo "PR number is: $NUMBER" echo "::set-output name=number::$NUMBER" diff --git a/Cargo.toml b/Cargo.toml index ebe7ff7..1354e78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "git-url-parse" readme = "README.md" repository = "https://github.com/tjtelan/git-url-parse-rs" -version = "0.4.2" +version = "0.4.3" [dependencies] tracing = "0.1"