Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
299 views
in Technique[技术] by (71.8m points)

Gitlab job to run ONLY ONCE when Merge Request is created

I want some specific jobs in my pipeline run only one time when I create a Merge Request. For example to assign reviewer for the MR, or to migrate data from QA environment.

Is there a way to achieve this in Gitlab?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Can you elaborate ? By default, all jobs are ran only one time. Are you talking about conditional runs ?

If so, I think the only/except concepts could be of interest. Maybe by using only:variables/except:variables. You would have to reimplement some logic in the background depending on your use case, though not so complicated (set a boolean at true/false).

See the doc for only/except


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...