The owner of a scheduled CI/CD pipeline in GitLab will always be notified if the pipeline fails.
Follow these steps if you don't want this:
Project Access Token
with api
scopecurl --request POST --header "PRIVATE-TOKEN: ${TOKEN}" \
--form description="Daily pipeline check" \
--form ref="master" \
--form cron="0 10 * * *" \
--form cron_timezone="UTC" \
--form active="true" \
"https://${GITLAB_URL}/api/v4/projects/${PROJECT_ID}/pipeline_schedules"
Integrations