diff options
| author | David Runge <dvzrv@archlinux.org> | 2022-01-31 17:28:36 +0100 |
|---|---|---|
| committer | David Runge <dvzrv@archlinux.org> | 2022-01-31 17:28:36 +0100 |
| commit | 5b950589ac2f6c7f4e2c65a1eedf4824aeac564f (patch) | |
| tree | b92be4c0bd95704c5e5e5edceade6b55105b298f | |
| parent | 549ce5bc4bd2745de9156fb84d415d67b2d4d17f (diff) | |
| download | archiso-5b950589ac2f6c7f4e2c65a1eedf4824aeac564f.tar.gz archiso-5b950589ac2f6c7f4e2c65a1eedf4824aeac564f.tar.bz2 | |
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.
| -rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 84ae892..628c28f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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/**/* |
