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.
1 parent f8648d6 commit d79c1a0Copy full SHA for d79c1a0
src/scripts/parse_commit_info.sh
@@ -46,17 +46,13 @@ ConstructCommitMessage() {
46
ParseCommitInfo() {
47
cd "$SOURCE_REPO_DIRECTORY" || { echo "Changing directory failed"; exit 1; }
48
49
- # Diagnostic output
50
- echo "Current directory: $(pwd)"
51
- ls -al
52
-
53
COMMIT_MESSAGE=$(FetchCommitMessage)
54
COMMIT_HASH=$(FetchCommitHash)
55
REPO_URL=$(FetchRepoURL)
56
REPO_NAME=$(ParseRepoName)
57
PR_NUMBER=$(ExtractPRNumber)
58
final_commit_message=$(ConstructCommitMessage "$REPO_NAME" "$COMMIT_MESSAGE" "$PR_NUMBER" "$COMMIT_HASH")
59
- echo "Final constructed message: $final_commit_message"
+ echo "$final_commit_message"
60
}
61
62
ORB_TEST_ENV="bats-core"
0 commit comments