Merge branch 'fix-non-urgent' into 'development'
fix: non urgent See merge request nofusscomputing/projects/gitlab-ci!50
This commit is contained in:
@ -26,7 +26,7 @@ include:
|
|||||||
variables:
|
variables:
|
||||||
JOB_ROOT_DIR: '.'
|
JOB_ROOT_DIR: '.'
|
||||||
SECURE_LOG_LEVEL: debug
|
SECURE_LOG_LEVEL: debug
|
||||||
GIT_SUBMODULE_STRATEGY: recursive
|
GIT_SUBMODULE_STRATEGY: normal
|
||||||
GIT_SYNC_URL: "https://$GITHUB_USERNAME_ROBOT:$GITHUB_TOKEN_ROBOT@github.com/NoFussComputing/gitlab-ci.git"
|
GIT_SYNC_URL: "https://$GITHUB_USERNAME_ROBOT:$GITHUB_TOKEN_ROBOT@github.com/NoFussComputing/gitlab-ci.git"
|
||||||
MY_PROJECT_ID: "28543717"
|
MY_PROJECT_ID: "28543717"
|
||||||
LICENSE_FINDER_CLI_OPTS: '--recursive'
|
LICENSE_FINDER_CLI_OPTS: '--recursive'
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
variables:
|
variables:
|
||||||
JOB_ROOT_DIR: 'gitlab-ci'
|
JOB_ROOT_DIR: 'gitlab-ci'
|
||||||
GIT_SUBMODULE_STRATEGY: recursive
|
GIT_SUBMODULE_STRATEGY: normal
|
||||||
#PIPELINE_RUN_TRIGGER: 'false'
|
#PIPELINE_RUN_TRIGGER: 'false'
|
||||||
PIPELINE_RUN_SCHEDULE: 'true'
|
PIPELINE_RUN_SCHEDULE: 'true'
|
||||||
|
|
||||||
|
@ -111,7 +111,7 @@ variables:
|
|||||||
- '{dockerfile, dockerfile.j2}'
|
- '{dockerfile, dockerfile.j2}'
|
||||||
changes:
|
changes:
|
||||||
paths:
|
paths:
|
||||||
- '{dockerfile, dockerfile.j2, includes**/**}'
|
- '{dockerfile, dockerfile.j2, includes/**}'
|
||||||
compare_to: 'master'
|
compare_to: 'master'
|
||||||
when: always
|
when: always
|
||||||
|
|
||||||
@ -123,7 +123,7 @@ variables:
|
|||||||
- '{dockerfile, dockerfile.j2}'
|
- '{dockerfile, dockerfile.j2}'
|
||||||
changes:
|
changes:
|
||||||
paths:
|
paths:
|
||||||
- '{dockerfile, dockerfile.j2, includes**/**}'
|
- '{dockerfile, dockerfile.j2, includes/**}'
|
||||||
compare_to: 'development'
|
compare_to: 'development'
|
||||||
when: always
|
when: always
|
||||||
|
|
||||||
|
@ -116,7 +116,7 @@
|
|||||||
- '{dockerfile, dockerfile.j2}'
|
- '{dockerfile, dockerfile.j2}'
|
||||||
changes:
|
changes:
|
||||||
paths:
|
paths:
|
||||||
- '{dockerfile, dockerfile.j2, includes**/**}'
|
- '{dockerfile, dockerfile.j2, includes/**}'
|
||||||
compare_to: 'master'
|
compare_to: 'master'
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
when: manual
|
when: manual
|
||||||
|
@ -112,9 +112,14 @@ commit footer refs:
|
|||||||
- if: # condition_not_master_or_dev_push
|
- if: # condition_not_master_or_dev_push
|
||||||
$CI_COMMIT_BRANCH != "master" &&
|
$CI_COMMIT_BRANCH != "master" &&
|
||||||
$CI_COMMIT_BRANCH != "development" &&
|
$CI_COMMIT_BRANCH != "development" &&
|
||||||
$CI_PIPELINE_SOURCE == "push"
|
$CI_PIPELINE_SOURCE == "push" &&
|
||||||
|
$CI_COMMIT_TAG == null
|
||||||
exists:
|
exists:
|
||||||
- .cz.yaml
|
- .cz.yaml
|
||||||
|
changes:
|
||||||
|
paths:
|
||||||
|
- "**/**"
|
||||||
|
compare_to: development
|
||||||
when: always
|
when: always
|
||||||
|
|
||||||
- when: never
|
- when: never
|
||||||
|
@ -41,17 +41,17 @@
|
|||||||
$CI_COMMIT_BRANCH == "master" &&
|
$CI_COMMIT_BRANCH == "master" &&
|
||||||
$CI_PIPELINE_SOURCE == "push"
|
$CI_PIPELINE_SOURCE == "push"
|
||||||
exists:
|
exists:
|
||||||
- '{defaults/**,handlers/**,meta/**,tasks/**}/*.yaml'
|
- '{defaults/**, handlers/**, inventory/**, meta/**, playbooks/**. tasks/**}/*.{yaml,yml}'
|
||||||
when: always
|
when: always
|
||||||
|
|
||||||
- if: # condition_dev_branch_push
|
- if: # condition_dev_branch_push
|
||||||
$CI_COMMIT_BRANCH == "development" &&
|
$CI_COMMIT_BRANCH == "development" &&
|
||||||
$CI_PIPELINE_SOURCE == "push"
|
$CI_PIPELINE_SOURCE == "push"
|
||||||
exists:
|
exists:
|
||||||
- '{defaults/**,handlers/**,meta/**,tasks/**}/*.yaml'
|
- '{defaults/**, handlers/**, inventory/**, meta/**, playbooks/**. tasks/**}/*.{yaml,yml}'
|
||||||
changes:
|
changes:
|
||||||
paths:
|
paths:
|
||||||
- '{defaults/**,handlers/**,meta/**,tasks/**}/*.yaml'
|
- '{defaults/**, handlers/**, inventory/**, meta/**, playbooks/**. tasks/**}/*.{yaml,yml}'
|
||||||
compare_to: 'master'
|
compare_to: 'master'
|
||||||
when: always
|
when: always
|
||||||
|
|
||||||
@ -60,10 +60,10 @@
|
|||||||
$CI_COMMIT_BRANCH != "development" &&
|
$CI_COMMIT_BRANCH != "development" &&
|
||||||
$CI_PIPELINE_SOURCE == "push"
|
$CI_PIPELINE_SOURCE == "push"
|
||||||
exists:
|
exists:
|
||||||
- '{defaults/**,handlers/**,meta/**,tasks/**}/*.yaml'
|
- '{defaults/**, handlers/**, inventory/**, meta/**, playbooks/**. tasks/**}/*.{yaml,yml}'
|
||||||
changes:
|
changes:
|
||||||
paths:
|
paths:
|
||||||
- '{defaults/**,handlers/**,meta/**,tasks/**}/*.yaml'
|
- '{defaults/**, handlers/**, inventory/**, meta/**, playbooks/**. tasks/**}/*.{yaml,yml}'
|
||||||
compare_to: 'development'
|
compare_to: 'development'
|
||||||
when: always
|
when: always
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user