Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/github_helper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2022-06-09 15:48:12 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2022-06-09 15:48:12 +0300
commit23506f9028bae05fb5b4adcdff1e1edc95949c21 (patch)
tree4062fc716e5199b121d57996256c1d0c756ab1c9
parent6d26e222ae9e01e0660eee66fe82f10c776c95f7 (diff)
use native GH linking also to non-server PRs
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-rw-r--r--changelog/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/changelog/index.php b/changelog/index.php
index fc43c69..672556d 100644
--- a/changelog/index.php
+++ b/changelog/index.php
@@ -395,7 +395,7 @@ QUERY;
if ($repoName === 'server') {
$output->writeln("* #$number");
} else {
- $output->writeln("* [$repoName#$number](https://github.com/$orgName/$repoName/pull/$number) $title");
+ $output->writeln("* $orgName/$repoName#$number");
}
}
if (count($prTitles['pending'])) {
@@ -418,7 +418,7 @@ QUERY;
if ($repoName === 'server') {
$output->writeln("* [ ] #$number $author");
} else {
- $output->writeln("* [ ] [$repoName#$number](https://github.com/$orgName/$repoName/pull/$number) $title $author");
+ $output->writeln("* [ ] $orgName/$repoName#$number $author");
}
}
break;