initial commit

This commit is contained in:
Mark Eaton
2025-12-12 07:46:39 -05:00
commit a5e46864d8
5 changed files with 121 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
// lives at /etc/renovate/config.js
// token goes in the same directory
module.exports = {
platform: 'gitea',
endpoint: 'https://tildegit.org/api/v1/',
token: process.env.RENOVATE_TOKEN,
// repositories: ['MarkEEaton/teams-bot'],
// Or use autodiscover to find all repos
autodiscover: true,
enabledManagers: ['npm', 'nodenv', 'pip_requirements', 'pip_setup', 'poetry', 'pipenv', 'pep621'],
// Disable GitHub-specific features
fetchReleaseNotes: false,
githubTokenWarn: false,
// Only use npm registry, PyPI, etc. - don't query GitHub
hostRules: [
{
hostType: 'github',
enabled: false,
}
],
// this is so that renovate doesn't think that python-version is a dependency
packageRules: [
{
// Ignore Python version updates
matchDatasources: ['python-version'],
enabled: false,
}
],
};