bdb5132460
Co-authored-by: Benjamin Bädorf <hello@benjaminbaedorf.eu> Reviewed-on: https://git.b12f.io/pub-solar/os/pulls/51 Reviewed-by: teutat3s <teutates@mailbox.org> Co-authored-by: Benjamin Bädorf <b12f@noreply.example.org> Co-committed-by: Benjamin Bädorf <b12f@noreply.example.org>
90 lines
2.3 KiB
YAML
90 lines
2.3 KiB
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: Upstreaming
|
|
|
|
steps:
|
|
- name: "Sync 'devos' branch with upstream"
|
|
image: alpine/git
|
|
when:
|
|
event:
|
|
- cron
|
|
cron:
|
|
- sync-main-with-upstream
|
|
environment:
|
|
GITEA_SSH_KEY:
|
|
from_secret: gitea_ssh_key
|
|
commands:
|
|
- ./.drone/setup_ssh.sh
|
|
- git remote add devos git@git.b12f.io:pub-solar/devos
|
|
- git remote set-url origin git@git.b12f.io:pub-solar/os
|
|
- git fetch --all
|
|
- git checkout -b devos --track origin/devos
|
|
- git merge -X theirs devos/main
|
|
- git push origin devos
|
|
|
|
- name: "Sync $BRANCH with upstream"
|
|
image: alpine/git
|
|
when:
|
|
event:
|
|
- cron
|
|
cron:
|
|
- sync-main-with-upstream
|
|
- sync-b12f-with-main
|
|
- sync-teutat3s-with-main
|
|
environment:
|
|
GITEA_SSH_KEY:
|
|
from_secret: gitea_ssh_key
|
|
commands:
|
|
- git fetch --all
|
|
- git checkout origin/main
|
|
- ./.drone/setup_ssh.sh
|
|
- git remote set-url origin git@git.b12f.io:pub-solar/os
|
|
- git fetch --all
|
|
- ./.drone/upstream-branch.sh
|
|
|
|
- name: "Open pull request for failed merge"
|
|
image: nixery.dev/shell/tea
|
|
when:
|
|
status:
|
|
- failure
|
|
event:
|
|
- cron
|
|
cron:
|
|
- sync-main-with-upstream
|
|
- sync-b12f-with-main
|
|
- sync-teutat3s-with-main
|
|
environment:
|
|
TEA_CONFIG:
|
|
from_secret: tea_config
|
|
commands:
|
|
- mkdir -p ~/.config/tea
|
|
- echo "$$TEA_CONFIG" > ~/.config/tea/config.yml
|
|
- tea pulls create --base main --head devos
|
|
|
|
- name: "Notify matrix"
|
|
image: plugins/matrix
|
|
when:
|
|
status:
|
|
- success
|
|
- failure
|
|
event:
|
|
- cron
|
|
cron:
|
|
- sync-main-with-upstream
|
|
- sync-b12f-with-main
|
|
- sync-teutat3s-with-main
|
|
settings:
|
|
homeserver: https://matrix.pub.solar
|
|
roomid: dfQBqwkhIzrFjMSsxy:pub.solar
|
|
username:
|
|
from_secret: matrix_username
|
|
password:
|
|
from_secret: matrix_password
|
|
template: "Upstreaming {{ build.status }} [{{ build.branch }}#{{ truncate build.commit 8 }}]({{ build.link }}) by {{ build.author }}. [Pull requests](https://git.b12f.io/pub-solar/os/pulls)"
|
|
---
|
|
kind: signature
|
|
hmac: 145dff5d1aac21f4c68f186cc2dbd98ccb8f08f23af8df3528de6a21defee1c7
|
|
|
|
...
|