.woodpecker/.deploy.yaml: add branch and PR creation

This commit is contained in:
Tom Neuber 2024-10-07 13:08:01 +02:00
parent 8f494aca2d
commit 4472f1bffe
Signed by: tom
GPG key ID: F17EFE4272D89FF6

View file

@ -1,3 +1,4 @@
skip_clone: true
steps:
- name: bump tag in deployment-repo (prod)
image: git.ar21.de/aaron/kustomize-ci
@ -21,7 +22,7 @@ steps:
- name: push new tag to deployment-repo (prod)
image: appleboy/drone-git-push
settings:
branch: main
branch: "${CI_PIPELINE_NUMBER}_dashboard_prod"
remote: ssh://git@git.ar21.de:2222/yolokube/core-deployments.git
path: deployment-repo
force: false
@ -35,7 +36,7 @@ steps:
- name: push new tag to deployment-repo (staging)
image: appleboy/drone-git-push
settings:
branch: main
branch: "${CI_PIPELINE_NUMBER}_dashboard_staging"
remote: ssh://git@git.ar21.de:2222/yolokube/core-deployments.git
path: deployment-repo
force: false
@ -47,6 +48,63 @@ steps:
- branch:
exclude: master
event: push
- name: create pull request (prod)
image: johnwalkerx/gitea-pull-request-create-plugin:latest
pull: true
settings:
gitea_address: https://git.ar21.de
gitea_token:
from_secret: FORGEJO_API
owner: ${CI_REPO_OWNER}
repo: core-deployments
branch: "${CI_PIPELINE_NUMBER}_dashboard_prod"
base_branch: main
pr_title: "DASHBOARD: update image tag to ${CI_PIPELINE_NUMBER}"
pr_body: |
### Dashboard image update
### Configuration
📅 **Schedule**: Branch creation - At any time, Automerge - At any time.
🚦 **Automerge**: Enabled.
skip_on_missing_branch: true
close_pr_if_empty: true
delete_branch_if_pr_empty: true
merge_when_checks_succeed: true
delete_branch_after_merge: true
when:
- branch: master
event: push
- name: create pull request (staging)
image: johnwalkerx/gitea-pull-request-create-plugin:latest
pull: true
settings:
gitea_address: https://git.ar21.de
gitea_token:
from_secret: FORGEJO_API
owner: ${CI_REPO_OWNER}
repo: core-deployments
branch: "${CI_PIPELINE_NUMBER}_dashboard_staging"
base_branch: main
pr_title: "DASHBOARD STAGING: update image tag to ${CI_PIPELINE_NUMBER}"
pr_body: |
### Dashboard image update
### Configuration
📅 **Schedule**: Branch creation - At any time, Automerge - At any time.
🚦 **Automerge**: Enabled.
skip_on_missing_branch: true
close_pr_if_empty: true
delete_branch_if_pr_empty: true
merge_when_checks_succeed: true
delete_branch_after_merge: true
when:
- branch:
exclude: master
event: push
depends_on:
- build
- test