diff --git a/.forgejo/workflows/renovate.yaml b/.forgejo/workflows/renovate.yaml deleted file mode 100644 index 059dceb0..00000000 --- a/.forgejo/workflows/renovate.yaml +++ /dev/null @@ -1,27 +0,0 @@ -name: Renovate - -on: - schedule: - # Run daily at 6:00 AM UTC - - cron: '0 6 * * *' - workflow_dispatch: - -jobs: - renovate: - runs-on: ubuntu-latest - container: - image: renovate/renovate:latest - steps: - - name: Checkout code - uses: https://github.com/actions/checkout@v4 - - - name: Run Renovate - env: - RENOVATE_PLATFORM: forgejo - RENOVATE_ENDPOINT: ${{ secrets.FORGEJO_ENDPOINT }} - RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} - RENOVATE_GIT_AUTHOR: Renovate Bot - RENOVATE_AUTODISCOVER: false - LOG_LEVEL: info - run: | - renovate graham/towerops-web diff --git a/renovate.json b/renovate.json deleted file mode 100644 index efb9d9c0..00000000 --- a/renovate.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ], - "gitAuthor": "Renovate Bot ", - "branchPrefix": "renovate/", - "semanticCommits": "enabled", - "dependencyDashboard": true, - "labels": [ - "dependencies" - ], - "schedule": [ - "at any time" - ], - "timezone": "UTC", - "prConcurrentLimit": 10, - "prCreation": "immediate", - "automerge": false, - "rangeStrategy": "bump", - "separateMajorMinor": true, - "separateMinorPatch": false, - "packageRules": [ - { - "description": "Elixir dependencies", - "matchManagers": [ - "mix" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "groupName": null, - "commitMessagePrefix": "chore(deps):" - }, - { - "description": "Docker dependencies", - "matchManagers": [ - "dockerfile" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "groupName": null, - "commitMessagePrefix": "chore(deps):" - }, - { - "description": "GitHub Actions", - "matchManagers": [ - "github-actions" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "groupName": null, - "commitMessagePrefix": "chore(deps):" - } - ] -}