File tree Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -93,3 +93,4 @@ GITLAB_AUTH_TOKEN="<token>" yarn run start
9393| ` AUTORUN_MANUAL_BLOCKING_JOBS ` | ` true ` | It'll autorun manual blocking jobs before merge |
9494| ` SKIP_SQUASHING_LABEL ` | ` bot:skip-squash ` | It'll skip squash when MR contains this label |
9595| ` HI_PRIORITY_LABEL ` | ` bot:hi-priority ` | It'll put MR with this label to the beginning of the queue |
96+ | ` SENTRY_DSN ` | `` | It'll enable Sentry monitoring |
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v1
22appVersion : " 1.0"
33description : A Helm chart for Kubernetes
44name : gitlab-merger-bot
5- version : 1.2.2
5+ version : 1.2.3
66home : https://github.com/pepakriz/gitlab-merger-bot
77maintainers :
88 - name : pepakriz
Original file line number Diff line number Diff line change 4545 value : " {{ .Values.settings.ciCheckInterval }}"
4646 - name : MR_CHECK_INTERVAL
4747 value : " {{ .Values.settings.mrCheckInterval }}"
48+ - name : REMOVE_BRANCH_AFTER_MERGE
49+ value : " {{ .Values.settings.removeBranchAfterMerge }}"
50+ - name : SQUASH_MERGE_REQUEST
51+ value : " {{ .Values.settings.squashMergeRequest }}"
4852 - name : AUTORUN_MANUAL_BLOCKING_JOBS
4953 value : " {{ .Values.settings.autorunManualBlockingJobs }}"
5054 - name : SENTRY_DSN
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ settings:
2626 sentryDsn : " "
2727 ciCheckInterval : 10
2828 mrCheckInterval : 20
29+ removeBranchAfterMerge : true
30+ squashMergeRequest : true
2931 autorunManualBlockingJobs : true
3032 skipSquashingLabel : " "
3133 hiPriorityLabel : " "
You can’t perform that action at this time.
0 commit comments