Skip to content
Snippets Groups Projects
Commit 18944524 authored by Malte Bauch's avatar Malte Bauch Committed by Fabian Seidl
Browse files

Fix missing workflow rule for scheduled pipelines


See merge request !388

Co-authored-by: default avatarAndré Sterba <andre.sterba@stud.h-da.de>
parent e1c4234e
No related branches found
No related tags found
2 merge requests!388Fix missing workflow rule for scheduled pipelines,!382Develop
Pipeline #118243 failed
...@@ -7,6 +7,7 @@ variables: ...@@ -7,6 +7,7 @@ variables:
workflow: workflow:
rules: rules:
- if: $CI_PIPELINE_SOURCE == 'push' - if: $CI_PIPELINE_SOURCE == 'push'
- if: $CI_PIPELINE_SOURCE == 'schedule'
stages: stages:
- tools - tools
......
renovate: renovate:
stage: tools stage: tools
image: renovate/renovate:32.127.0-slim@sha256:30824333e0978851f96ac8e58e7afa39aaf996de243f8bfcb1d7d6906b46488d image: renovate/renovate:32.240.4-slim
variables: variables:
LOG_LEVEL: debug LOG_LEVEL: debug
RENOVATE_BASE_BRANCHES: "develop"
script: script:
- renovate $RENOVATE_EXTRA_FLAGS - renovate $RENOVATE_EXTRA_FLAGS
......
...@@ -20,5 +20,6 @@ module.exports = { ...@@ -20,5 +20,6 @@ module.exports = {
autodiscover: true, autodiscover: true,
prConcurrentLimit: 10, prConcurrentLimit: 10,
commitMessagePrefix: '[renovate]', commitMessagePrefix: '[renovate]',
labels: ['renovate'] labels: ['renovate'],
baseBranches: ['develop']
}; };
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"gitAuthor": "renovate@danet.fbi.h-da.de",
"ignorePaths": [
"**/node_modules/**",
"**/bower_components/**",
"**/api/deps/**",
"csbi/docker-compose.yml",
"docker-compose.yml",
"applications/venv-manager/venv-manager.Dockerfile",
"cli/cli.Dockerfile",
"controller/Dockerfile.debug",
"controller/controller.Dockerfile",
"csbi/Dockerfile.exec",
"csbi/csbi.Dockerfile",
"csbi/gnmi-target/gnmitarget.Dockerfile",
"csbi/resources/Dockerfile",
".gitlab/ci/.uml-autogen-ci.yml",
".gitlab/ci/.integration-test.yml",
".gitlab/ci/.test.yml",
".gitlab/ci/.code-quality-ci.yml",
".gitlab/ci/.build-binaries.yml",
"csbi/resources/go.mod",
"csbi/testdata/00000000-0000-0000-0000-000000000000/go.mod",
"controller/test/terraform/containers.tf",
"controller/test/terraform/images.tf",
"controller/test/terraform/main.tf",
"controller/test/terraform/providers.tf"
],
"prConcurrentLimit": 10,
"commitMessagePrefix": "[renovate]",
"labels": ["renovate"],
"baseBranches": ["develop"]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment