From 6e33e0a0651355a61446eef9e52d784edd7eda18 Mon Sep 17 00:00:00 2001 From: Cristhian Garcia Date: Fri, 25 Oct 2024 09:43:51 -0500 Subject: [PATCH] build: add renovate bot workflow --- .github/workflows/renovate.yaml | 23 +++++++++++++++++++++++ renovate.json | 6 ++++++ 2 files changed, 29 insertions(+) create mode 100644 .github/workflows/renovate.yaml create mode 100644 renovate.json diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml new file mode 100644 index 0000000..f455389 --- /dev/null +++ b/.github/workflows/renovate.yaml @@ -0,0 +1,23 @@ +name: Renovate + +on: + schedule: + - cron: "0 0 * * MON" + +jobs: + renovate: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Self-hosted Renovate + uses: renovatebot/github-action@v40.1.12 + with: + token: ${{ secrets.RENOVATE_PATH }} + configurationFile: renovate.json + env: + RENOVATE_REPOSITORIES: ${{ github.repository }} + LOG_LEVEL: info + RENOVATE_ONBOARDING: false diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..50c0a42 --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "branchPrefix": "renovate/", + "pinDigests": false, + "prHourlyLimit": 20, + "labels": ["global", "dependencies"] +}