Skip to content
This repository was archived by the owner on Aug 20, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
workflow:
rules:
- if: $CI_COMMIT_TAG
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
- if: $CI_PIPELINE_SOURCE == "web"

stages:
- verify

verify:
stage: verify
image: python:3.9
tags:
- gsp-privileged
before_script:
- apt-get update && apt-get install --no-install-recommends -y make
- make ci-install
script:
- make test
24 changes: 24 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"enabledManagers": [
"gitlabci"
],
"prConcurrentLimit": 100,
"lockFileMaintenance": {
"enabled": false
},
"packageRules": [
{
"description": "GitLab CI dependency updates weekly on Thursday",
"matchManagers": [
"gitlabci"
],
"schedule": [
"on thursday"
]
}
]
}
Loading