From 01e086a9c6710fe0613b8ff2049ecdd78838b451 Mon Sep 17 00:00:00 2001 From: Val Redchenko Date: Thu, 28 May 2026 12:58:20 +0100 Subject: [PATCH] chore: restore self-hosted Renovate workflow The org-wide Mend.io Renovate GitHub App has not been reliably processing this repo since late April. Restore the self-hosted workflow originally added in the Dependabot -> Renovate migration and dropped in smartem-devtools#182. Schedule is twice daily plus workflow_dispatch; renovate.json is unchanged and continues to drive configuration via the shared preset. Requires RENOVATE_TOKEN secret to be set. --- .github/workflows/renovate.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..33f6ebb --- /dev/null +++ b/.github/workflows/renovate.yml @@ -0,0 +1,21 @@ +name: Renovate + +on: + schedule: + - cron: "0 4,16 * * *" + workflow_dispatch: + +permissions: + contents: write + pull-requests: write + issues: write + +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - uses: renovatebot/github-action@v46.1.14 + with: + token: ${{ secrets.RENOVATE_TOKEN }} + configurationFile: renovate.json