24 lines
475 B
YAML
24 lines
475 B
YAML
|
.cic_notify_variables:
|
||
|
variables:
|
||
|
APP_NAME: cic-notify
|
||
|
DOCKERFILE_PATH: $APP_NAME/docker/Dockerfile
|
||
|
|
||
|
.this_changes_target:
|
||
|
rules:
|
||
|
- changes:
|
||
|
- $CONTEXT/$APP_NAME/*
|
||
|
|
||
|
build-mr-cic-notify:
|
||
|
extends:
|
||
|
- .this_changes_target
|
||
|
- .py_build_merge_request
|
||
|
- .cic_notify_variables
|
||
|
|
||
|
build-push-cic-notify:
|
||
|
extends:
|
||
|
- .this_changes_target
|
||
|
- .py_build_push
|
||
|
- .cic_notify_variables
|
||
|
|
||
|
|