diff --git a/.drone.yml b/.drone.yml index 30309e1..1fb56a5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -22,9 +22,6 @@ steps: - name: renovate image: renovate/renovate:33.2.0 - volumes: - - name: tmp - path: /tmp # https://github.com/renovatebot/renovate/discussions/15049 commands: - unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL @@ -33,10 +30,3 @@ steps: environment: RENOVATE_TOKEN: from_secret: RENOVATE_TOKEN - GITHUB_COM_TOKEN: - from_secret: GITHUB_TOKEN - -volumes: -- name: tmp - host: - path: /tmp diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml deleted file mode 100644 index acccd92..0000000 --- a/.gitea/workflows/renovate.yaml +++ /dev/null @@ -1,21 +0,0 @@ -name: renovate - -on: - schedule: - - cron: '0 */12 * * *' - push: - branches: - - master - -jobs: - renovate: - runs-on: ubuntu-latest - container: ghcr.io/renovatebot/renovate:38.110.1 - steps: - - uses: actions/checkout@v4 - - run: renovate - env: - RENOVATE_CONFIG_FILE: "/workspace/renovate/renovate-config/config.js" # replace it with your config.js path - LOG_LEVEL: "info" - RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} # your Revonate bot token - GITHUB_COM_TOKEN: ${{ secrets.COM_GITHUB_TOKEN }} # your GitHub token diff --git a/config.js b/config.js index 1ec4b58..1b69925 100644 --- a/config.js +++ b/config.js @@ -6,10 +6,11 @@ module.exports = { autodiscover: true, onboardingConfig: { $schema: 'https://docs.renovatebot.com/renovate-schema.json', - extends: ["config:recommended", ":rebaseStalePrs"] + extends: ['config:base'] }, - branchPrefix: 'renovate-', optimizeForDisabled: true, persistRepoData: true, + repositories: [ + "cloonar/wohnservice-wien-typo3" + ] } - diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..39a2b6e --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base" + ] +}