Skip to content

Commit e7f57cd

Browse files
committed
Don't link the 'PR' label in lightweight comments
The title is already linked to the PR, so linking the 'PR' label to the same URL was redundant. Keep 'PR' as plain text and link only the title: PR [**"Fix login"**](url) opened by user
1 parent 617ee1e commit e7f57cd

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/teamwork.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ teamwork::pull_request_opened() {
146146
IFS=" " read -r -a pr_stats_array <<< "$pr_stats"
147147

148148
if [ "$LIGHTWEIGHT_COMMENT" == "true" ]; then
149-
teamwork::add_comment "[PR]($pr_url) [**\"$pr_title\"**]($pr_url) opened by $user"
149+
teamwork::add_comment "PR [**\"$pr_title\"**]($pr_url) opened by $user"
150150
else
151151
teamwork::add_comment "
152152
**$user** opened a PR: **$pr_title**
@@ -176,7 +176,7 @@ teamwork::pull_request_closed() {
176176

177177
if [ "$pr_merged" == "true" ]; then
178178
if [ "$LIGHTWEIGHT_COMMENT" == "true" ]; then
179-
teamwork::add_comment "[PR]($pr_url) [**\"$pr_title\"**]($pr_url) merged by $user"
179+
teamwork::add_comment "PR [**\"$pr_title\"**]($pr_url) merged by $user"
180180
else
181181
teamwork::add_comment "
182182
**$user** merged a PR: **$pr_title**
@@ -189,7 +189,7 @@ teamwork::pull_request_closed() {
189189
teamwork::move_task_to_column "$BOARD_COLUMN_MERGED"
190190
else
191191
if [ "$LIGHTWEIGHT_COMMENT" == "true" ]; then
192-
teamwork::add_comment "[PR]($pr_url) [**\"$pr_title\"**]($pr_url) closed without merging by $user"
192+
teamwork::add_comment "PR [**\"$pr_title\"**]($pr_url) closed without merging by $user"
193193
else
194194
teamwork::add_comment "
195195
**$user** closed a PR without merging: **$pr_title**
@@ -212,7 +212,7 @@ teamwork::pull_request_review_submitted() {
212212
# Only add a message if the PR has been approved
213213
if [ "$review_state" == "approved" ]; then
214214
if [ "$LIGHTWEIGHT_COMMENT" == "true" ]; then
215-
teamwork::add_comment "[PR]($pr_url) [**\"$pr_title\"**]($pr_url) approved by $user"
215+
teamwork::add_comment "PR [**\"$pr_title\"**]($pr_url) approved by $user"
216216
else
217217
teamwork::add_comment "
218218
**$user** submitted a review to the PR: **$pr_title**

0 commit comments

Comments
 (0)