Limit CI pipelines on default branch and merge requests

.gitlab-ci.yml:
Only run build pipelines on default branch and merge requests if they change code or profile files.
This commit is contained in:
David Runge 2022-01-31 17:28:36 +01:00
parent 549ce5bc4b
commit 5b950589ac
No known key found for this signature in database
GPG Key ID: 7258734B41C31549

View File

@ -40,6 +40,9 @@ build_short:
- BUILD_SCRIPT_ARGS: baseline bootstrap
- BUILD_SCRIPT_ARGS: releng bootstrap
only:
refs:
- master
- merge_requests
changes:
- archiso/*
- configs/**/*
@ -59,6 +62,9 @@ build_long:
tags:
- fast-single-thread
only:
refs:
- master
- merge_requests
changes:
- archiso/*
- configs/**/*