From 61fd7f324f9d4641401c7360760358f11746e2ea Mon Sep 17 00:00:00 2001 From: tobiasKaminsky Date: Wed, 30 Aug 2023 15:27:20 +0200 Subject: [PATCH] bump Signed-off-by: tobiasKaminsky --- scripts/analysis/analysis-wrapper.sh | 2 +- scripts/analysis/getBranchName.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/analysis/analysis-wrapper.sh b/scripts/analysis/analysis-wrapper.sh index 9fdefcbfd..2f29981a4 100755 --- a/scripts/analysis/analysis-wrapper.sh +++ b/scripts/analysis/analysis-wrapper.sh @@ -8,7 +8,7 @@ #6: DRONE_BUILD_NUMBER #7: PULL_REQUEST_NUMBER -stableBranch="master" +stableBranch="stable-2.16" repository="library" ruby scripts/analysis/findbugs-up.rb $1 $2 $3 diff --git a/scripts/analysis/getBranchName.sh b/scripts/analysis/getBranchName.sh index 45c38cf73..7a389c1c5 100755 --- a/scripts/analysis/getBranchName.sh +++ b/scripts/analysis/getBranchName.sh @@ -3,7 +3,7 @@ # $1: username, $2: password/token, $3: pull request number if [ -z $3 ] ; then - echo "master"; + echo "stable-2.16"; else - curl 2>/dev/null -u $1:$2 https://api.github.com/repos/nextcloud/android-library/pulls/$3 | grep \"ref\": | grep -v '"master"' | cut -d"\"" -f4 + curl 2>/dev/null -u $1:$2 https://api.github.com/repos/nextcloud/android-library/pulls/$3 | grep \"ref\": | grep -v '"stable-2.16"' | cut -d"\"" -f4 fi