Merge pull request 'woodpecker: create new PR for core-deployments instead push to main' (#315) from tn_improce_ci into master
Reviewed-on: #315
This commit is contained in:
commit
729a7cbe73
2 changed files with 67 additions and 8 deletions
|
@ -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
|
|
@ -1,3 +1,4 @@
|
|||
skip_clone: true
|
||||
steps:
|
||||
- name: test (prod)
|
||||
image: git.ar21.de/yolokube/dashboard:${CI_PIPELINE_NUMBER}
|
||||
|
|
Loading…
Reference in a new issue