We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c59023c + f0223a3 commit de91886Copy full SHA for de91886
.gitlab-ci.yml
@@ -1,7 +1,21 @@
1
stages:
2
- build_and_test
3
+ - check
4
- run_downstream_ci
5
6
+issue-check:
7
+ services:
8
+ - image:e3
9
+ stage: check
10
+ needs: [] # Do not wait for the other stages to execute
11
+ interruptible: true # Cancel job if the branch is pushed
12
+ variables: # do not checkout the git repository, not needed
13
+ GIT_STRATEGY: none
14
+ rules: # Launch only on merge requests
15
+ - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
16
+ script:
17
+ - require_issue # launch the verification
18
+
19
.basic-setup:
20
# Use generic_anod_ci here.
21
- generic_anod_ci
0 commit comments