diff --git a/.woodpecker/lint.yaml b/.woodpecker/lint.yaml new file mode 100644 index 0000000..f6fdd83 --- /dev/null +++ b/.woodpecker/lint.yaml @@ -0,0 +1,20 @@ +when: + event: + - push + - manual + - cron + +matrix: + RENOVATE_CONFIG_FILE: + - config.js + +steps: + lint: + image: renovate/renovate:41 + pull: true + commands: + - renovate-config-validator + environment: + LOG_LEVEL: debug + RENOVATE_TOKEN: + from_secret: renovate_token diff --git a/config.js b/config.js new file mode 100644 index 0000000..97326ea --- /dev/null +++ b/config.js @@ -0,0 +1,8 @@ +module.export = { + platform: "forgejo", + endpoint: "https://forge.e5150.fr", + gitAuthor: "CIBot ", + autoDiscover: true, + labels: ["Dependancy 📦️"], + extends: ["config:recommended"], +};