Initial commit
Some checks failed
renovate / renovate (push) Has been cancelled

This commit is contained in:
2025-04-13 20:36:01 +02:00
commit 41828ae022
3 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
name: renovate
on:
schedule:
- cron: "@hourly"
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:37.20.2
steps:
- uses: actions/checkout@v4
- run: renovate
env:
RENOVATE_CONFIG_FILE: "/workspace/connected-it/renovate-config/config.js"
LOG_LEVEL: "debug"
RENOVATE_TOKEN: b9791f9de22856120ba85dd0adeb76178e5cb85f

42
.gitignore vendored Normal file
View File

@@ -0,0 +1,42 @@
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
# Compiled output
/dist
/tmp
/out-tsc
/bazel-out
# Node
/node_modules*
npm-debug.log
yarn-error.log
# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*
# Miscellaneous
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings
# System files
.DS_Store
Thumbs.db

8
config.js Normal file
View File

@@ -0,0 +1,8 @@
module.exports = {
"endpoint": "https://git.tenvoorde.org/api/v1",
"gitAuthor": "Renovate Bot <michel@tenvoorde.org>",
"platform": "gitea",
"onboardingConfigFileName": "renovate.json",
"autodiscover": true,
"optimizeForDisabled": true,
};