add drone
fix drone fix drone add jq to drone add password change pw change pw
This commit is contained in:
parent
895a2e2467
commit
afd87ea949
22
.drone.yml
Normal file
22
.drone.yml
Normal file
@ -0,0 +1,22 @@
|
||||
---
|
||||
kind: pipeline
|
||||
name: default
|
||||
|
||||
platform:
|
||||
os: linux
|
||||
arch: arm
|
||||
clone:
|
||||
skip_verify: true
|
||||
|
||||
steps:
|
||||
- name: git
|
||||
image: plugins/git
|
||||
commands:
|
||||
- git config user.name $USERNAME
|
||||
- git config user.password $PASSWORD
|
||||
- /bin/ash gather.sh
|
||||
environment:
|
||||
PASSWORD:
|
||||
from_secret: password
|
||||
USERNAME:
|
||||
from_secret: username
|
@ -1,5 +1,8 @@
|
||||
# Flectra Community Module Gather
|
||||
|
||||
apk update
|
||||
apk add jq
|
||||
|
||||
for i in {1..3}; do
|
||||
repos=$(curl -s "https://gitlab.com/api/v4/groups/flectra-community/projects?per_page=100&page=${i}")
|
||||
git config --global merge.ours.driver true
|
||||
@ -17,6 +20,7 @@ for i in {1..3}; do
|
||||
git fetch $name
|
||||
git checkout 2.0
|
||||
git merge --no-edit --allow-unrelated-histories $name/2.0
|
||||
git checkout 2.0-fixed
|
||||
git merge --no-edit --allow-unrelated-histories $name/2.0-fixed
|
||||
git checkout 2.0-upstream
|
||||
git merge --no-edit --allow-unrelated-histories $name/2.0-upstream
|
||||
@ -30,3 +34,4 @@ for i in {1..3}; do
|
||||
git gc --prune=now
|
||||
done
|
||||
done
|
||||
git push --all
|
Loading…
Reference in New Issue
Block a user