From 235324b231599b1c581fcb80cf944a707935a44f Mon Sep 17 00:00:00 2001 From: JesseBot Date: Mon, 31 Jul 2023 09:41:40 +0200 Subject: [PATCH] Create renovate.yaml --- .github/workflows/renovate.yaml | 17 +++++++++++++++++ 1 file changed, 17 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 0000000..3f4e153 --- /dev/null +++ b/.github/workflows/renovate.yaml @@ -0,0 +1,17 @@ +name: Renovate - check for dependency updates +on: + schedule: + # The "*" (#42, asterisk) character has special semantics in YAML, so this + # string has to be quoted. + - cron: '1 * * * *' +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Self-hosted Renovate + uses: renovatebot/github-action@v39.0.1 + with: + token: ${{ secrets.RENOVATE_TOKEN }} + configurationFile: .github/renovate.json