Answers for "merge when pipeline succeeds gitlab"

0

merge when pipeline succeeds gitlab

enable_merge:
  only: [merge_requests]
  script:
    - echo true
Posted by: Guest on April-14-2021
1

gitlab ci run pipeline only when new merge request created

Gitlab CI only run on Merge Request
To configure pipelines for merge requests, 
add the only: [merge_requests] parameter to 
the jobs that you want to run only for merge requests. 
Then, when developers create or update merge requests, 
a pipeline runs every time a commit is pushed to GitLab.
Posted by: Guest on February-20-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language