From 5aaabad8156b5f124d94b7a4b2951ee701a6dbfa Mon Sep 17 00:00:00 2001 From: coffmark Date: Fri, 15 Dec 2023 07:35:16 +0900 Subject: [PATCH] Create Renovate.yml --- .github/workflows/renovate.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/renovate.yml diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml new file mode 100644 index 0000000..a9b0392 --- /dev/null +++ b/.github/workflows/renovate.yml @@ -0,0 +1,17 @@ +name: Renovate + +on: push +# schedule: + # Every Saturday 10:00 + #- cron: '0 10 * * 6' +jobs: + renovate: + runs-on: macos-latest + steps: + - name: Checkout + uses: actions/checkout@v4.1.1 + - name: Self-hosted Renovate + uses: renovatebot/github-action@v39.2.1 + with: + configurationFile: renovate.json5 + token: ${{ secrets.RENOVATE_TOKEN }}