Skip to content

Commit 2205f19

Browse files
committed
Rename header to Performance Results
1 parent ce710ae commit 2205f19

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

β€Žetc/perf-pr-comment.shβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if [[ -n "${BASE_SHA+set}" && -n "${HEAD_SHA+set}" && "$BASE_SHA" != "$HEAD_SHA"
1414
go run ./internal/cmd/perfcomp/parseperfcomp/main.go
1515
# Make the PR comment.
1616
target=$DRIVERS_TOOLS/.evergreen/github_app/create_or_modify_comment.sh
17-
bash $target -m "## πŸ‘‹ GoDriver Performance" -c "$(pwd)/perf-report.md" -h $HEAD_SHA -o "mongodb" -n "mongo-go-driver"
17+
bash $target -m "## πŸ§ͺ Performance Results" -c "$(pwd)/perf-report.md" -h $HEAD_SHA -o "mongodb" -n "mongo-go-driver"
1818
else
1919
# Skip comment if it isn't a PR run.
2020
echo "Skipping Perf PR comment"

β€Žinternal/cmd/perfcomp/main.goβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ func main() {
170170

171171
// Log energy stats output
172172
prComment := generatePRComment(allEnergyStats, version)
173-
log.Println("πŸ‘‹ GoDriver Performance")
173+
log.Println("πŸ§ͺ Performance Results")
174174
log.Println(prComment)
175175

176176
// Save for PR comment if it is a PR run

β€Žinternal/cmd/perfcomp/parseperfcomp/main.goβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func main() {
3939
}
4040
defer fWrite.Close()
4141

42-
fmt.Fprintf(fWrite, "## πŸ‘‹ GoDriver Performance\n")
42+
fmt.Fprintf(fWrite, "## πŸ§ͺ Performance Results\n")
4343

4444
// read the file line by line using scanner
4545
scanner := bufio.NewScanner(fRead)

0 commit comments

Comments
Β (0)