From 41828ae022a893722c525e2381b84b8f2b2bd2ec Mon Sep 17 00:00:00 2001 From: Michel ten Voorde Date: Sun, 13 Apr 2025 20:36:01 +0200 Subject: [PATCH] Initial commit --- .gitea/workflows/renovate.yaml | 20 ++++++++++++++++ .gitignore | 42 ++++++++++++++++++++++++++++++++++ config.js | 8 +++++++ 3 files changed, 70 insertions(+) create mode 100644 .gitea/workflows/renovate.yaml create mode 100644 .gitignore create mode 100644 config.js diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml new file mode 100644 index 0000000..200555e --- /dev/null +++ b/.gitea/workflows/renovate.yaml @@ -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 \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2f29dc7 --- /dev/null +++ b/.gitignore @@ -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 diff --git a/config.js b/config.js new file mode 100644 index 0000000..c0090ac --- /dev/null +++ b/config.js @@ -0,0 +1,8 @@ +module.exports = { + "endpoint": "https://git.tenvoorde.org/api/v1", + "gitAuthor": "Renovate Bot ", + "platform": "gitea", + "onboardingConfigFileName": "renovate.json", + "autodiscover": true, + "optimizeForDisabled": true, +}; \ No newline at end of file