diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 000000000..b3f7ba1a7 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,17 @@ +{ + "branchPrefix": "foreman-renovate/", + "dryRun": "full", + "username": "renovate-release", + "gitAuthor": "Renovate Bot ", + "onboarding": false, + "platform": "github", + "includeForks": true, + "repositories": [ + "evgeni/foreman-infra", + ], + "packageRules": [ + { + "matchManagers": ["puppet"], + } + ] +} diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml new file mode 100644 index 000000000..426121c0d --- /dev/null +++ b/.github/workflows/renovate.yml @@ -0,0 +1,17 @@ +name: Renovate + +on: + workflow_dispatch: + schedule: + - cron: '4 4 * * 0' + +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Self-hosted Renovate + uses: renovatebot/github-action@v39.1.1 + with: + token: ${{ secrets.GITHUB_TOKEN }}