Compare commits

...

2 Commits

Author SHA1 Message Date
7f36bb2abd ci: add renovate pipeline
All checks were successful
renovate / renovate (push) Successful in 24s
2025-03-17 20:11:41 +01:00
09f412391d feat: initial commit 2025-03-17 20:11:25 +01:00
6 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,8 @@
module.exports = {
"endpoint": "https://git.dev-null.rocks/api/v1", // replace it with your actual endpoint
"gitAuthor": "Renovate Bot <renovate-bot@dev-null.rocks>",
"platform": "gitea",
"onboardingConfigFileName": "renovate.json",
"autodiscover": true,
"optimizeForDisabled": true,
};

View File

@ -0,0 +1,20 @@
name: renovate
on:
schedule:
- cron: "@daily"
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:39.207.2
steps:
- uses: actions/checkout@v4
- run: renovate
env:
RENOVATE_CONFIG_FILE: ".gitea/workflows/config.js" # replace it with your config.js path
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} # your Revonate bot token

5
.gitignore vendored
View File

@ -20,3 +20,8 @@ Cargo.lock
# and can be added to the global gitignore or merged into this file. For a more nuclear # and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/ #.idea/
# Added by cargo
/target

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "tsp-rs"
version = "0.1.0"
edition = "2021"
[dependencies]

9
renovate.json Normal file
View File

@ -0,0 +1,9 @@
{
"extends": ["config:recommended"],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true
}
]
}

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}