From c5532729dd2f86848c0326c87cc8cfe49a9df8dd Mon Sep 17 00:00:00 2001 From: Brahim Hadriche Date: Thu, 13 Oct 2022 12:42:41 -0400 Subject: [PATCH] Renovate action --- .github/workflows/renovate.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 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 00000000..fc0404de --- /dev/null +++ b/.github/workflows/renovate.yml @@ -0,0 +1,30 @@ +name: Renovate + +on: + workflow_dispatch: + inputs: + log-level: + type: choice + description: Select log level for Renovate + options: + - trace + - debug + - info + - warn + - error + default: into + required: false + schedule: + # The "*" (#42, asterisk) character has special semantics in YAML, so this + # string has to be quoted. + - cron: '0/15 * * * *' +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2.0.0 + - name: Self-hosted Renovate + uses: renovatebot/github-action@v32.118.0 + with: + token: ${{ secrets.RENOVATE_TOKEN }}