Module: Mesa Branch: master Commit: a6c4db9798b3a4b496ad18430dcba1839986b896 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a6c4db9798b3a4b496ad18430dcba1839986b896
Author: Michel Dänzer <[email protected]> Date: Fri Aug 28 17:08:57 2020 +0200 ci: Restrict "success" job to pipelines for MRs Expected benefits: * No more spurious non-MR pipelines with just this job. * No more warnings from GitLab such as on https://gitlab.freedesktop.org/mesa/mesa/-/pipelines/195778 Reviewed-by: Daniel Stone <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6492> --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 35593d7909f..3fea645d414 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -126,7 +126,8 @@ success: when: never - changes: *all_paths when: never - - when: on_success + - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME' + when: on_success variables: GIT_STRATEGY: none script: _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
