From f312f1a3efd0cccf1238d3db1226610064d2a2f5 Mon Sep 17 00:00:00 2001 From: Melvin Klein Date: Fri, 8 Nov 2024 13:26:19 +0000 Subject: [PATCH] add renovate workflow --- .github/workflows/renovate.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/renovate.yaml diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml new file mode 100644 index 000000000..58a9ec6f8 --- /dev/null +++ b/.github/workflows/renovate.yaml @@ -0,0 +1,21 @@ +name: Renovate + +on: + schedule: + - cron: "0 0 * * *" + workflow_dispatch: + +jobs: + renovate: + name: Renovate + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Self-hosted Renovate + uses: renovatebot/github-action@v40.3.5 + env: + RENOVATE_REPOSITORIES: '["stackitcloud/stackit-sdk-python"]' + RENOVATE_ENABLED_MANAGERS: '["poetry", "github-actions"]' + with: + token: ${{ secrets.RENOVATE_TOKEN }} \ No newline at end of file