We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94dffe5 commit f4e2d22Copy full SHA for f4e2d22
5 files changed
.aspell.yml
@@ -37,3 +37,4 @@ allowed:
37
- crt
38
- ocsp
39
- logrus
40
+ - backport
.gitlab-ci.yml
@@ -1,4 +1,5 @@
1
stages:
2
+ - bots
3
- lint
4
- checks
5
- build
@@ -11,6 +12,18 @@ variables:
11
12
GO_VERSION: "1.24"
13
DOCKER_VERSION: "26.0"
14
15
+mr-backport-question:
16
+ stage: bots
17
+ needs: []
18
+ image:
19
+ name: $CI_REGISTRY_GO/docker:$DOCKER_VERSION-go$GO_VERSION
20
+ entrypoint: [ "" ]
21
+ rules:
22
+ - if: $CI_PIPELINE_SOURCE == 'merge_request_event' && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH
23
+ tags:
24
+ - go
25
+ script:
26
+ - go run cmd/gitlab-mr-checker/main.go
27
diff:
28
stage: lint
29
image:
0 commit comments