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:
authorMorris Jobke <hey@morrisjobke.de>2019-04-09 11:27:02 +0300
committerMorris Jobke <hey@morrisjobke.de>2019-04-09 11:27:03 +0300
commitae9bb6840fb1df043047a3fe8ff47375a23cbcfc (patch)
tree632234a67e195e6d19eb63b9b4f0a39b8dd91f3f /changelog
parentd96a3c3bcad5d52d1a110080f62a57b5a2328ae8 (diff)
Also exclude tags of 15 and 14 releases
fixes #16 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'changelog')
-rw-r--r--changelog/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/changelog/index.php b/changelog/index.php
index e346172..6e78fa3 100644
--- a/changelog/index.php
+++ b/changelog/index.php
@@ -81,7 +81,7 @@ class GenerateChangelogCommand extends Command
$base = $input->getArgument('base');
$head = $input->getArgument('head');
- if ($head !== 'stable14' && $head !== 'stable15') {
+ if (!in_array($head, ['stable14', 'stable15']) && !in_array(substr($head, 0, 3), ['v14', 'v15'])) {
$reposToIterate[] = 'privacy';
$reposToIterate[] = 'recommendations';
$reposToIterate[] = 'viewer';