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

github.com/nextcloud/talk-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hibbe <dev@mhibbe.de>2022-03-31 14:58:47 +0300
committerMarcel Hibbe <dev@mhibbe.de>2022-03-31 14:58:47 +0300
commitb2d10e65d516e1a8e02dffc84bf811f9bce77b66 (patch)
treebe1c70f23d45d36067f5ac9f89017b0d0e17e69c
parent43c9d09efec9314e4bebd1cfce55a0289c4e0c3c (diff)
update configs for stable-14v14.0.0rc1stable-14
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
-rw-r--r--.drone.yml10
-rwxr-xr-xscripts/analysis/analysis-wrapper.sh2
-rwxr-xr-xscripts/analysis/getBranchName.sh4
3 files changed, 8 insertions, 8 deletions
diff --git a/.drone.yml b/.drone.yml
index 4f33e4cd6..03a848ef8 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -10,7 +10,7 @@ steps:
trigger:
branch:
- - master
+ - stable-14
event:
- pull_request
- push
@@ -28,7 +28,7 @@ steps:
trigger:
branch:
- - master
+ - stable-14
event:
- push
- pull_request
@@ -68,7 +68,7 @@ services:
trigger:
branch:
- - master
+ - stable-14
event:
- push
- pull_request
@@ -119,11 +119,11 @@ steps:
status:
- failure
branch:
- - master
+ - stable-14
trigger:
branch:
- - master
+ - stable-14
event:
- push
- pull_request
diff --git a/scripts/analysis/analysis-wrapper.sh b/scripts/analysis/analysis-wrapper.sh
index 53ac32447..15c910e8e 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-14"
repository="talk"
ruby scripts/analysis/lint-up.rb $1 $2 $3
diff --git a/scripts/analysis/getBranchName.sh b/scripts/analysis/getBranchName.sh
index 7b91215c5..0442b1a5e 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-14";
else
- curl 2>/dev/null -u $1:$2 https://api.github.com/repos/nextcloud/talk-android/pulls/$3 | grep \"ref\": | grep -v master | cut -d"\"" -f4
+ curl 2>/dev/null -u $1:$2 https://api.github.com/repos/nextcloud/talk-android/pulls/$3 | grep \"ref\": | grep -v stable-14 | cut -d"\"" -f4
fi