Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.04 KB

README.md

File metadata and controls

37 lines (30 loc) · 1.04 KB

nx-renovate-self-hosted

renovate

renovate self-hosted setup for nx workspaces to run migrations

How to use:

  1. Create a .github/renovate.json file in the root of your nx workspace
  2. Add the following content to the file:
{
   "$schema": "https://docs.renovatebot.com/renovate-schema.json",
   "extends": [
      "config:base",
      ":label(dependencies)",
      "github>nx-squeezer/squeezer",
      "github>nx-squeezer/squeezer:nrwlWorkspace",
      ":assignee(WolfSoko)"
   ],
   "schedule": [
      "at any time"
   ],
   "automergeStrategy": "rebase",
   "automerge": true,
   "automergeType": "pr",
   "platformAutomerge": true,
   "prCreation": "immediate"
}
  1. Create a self-hosted renovate runner e.g. Add the following to your .github/workflows/renovate.yml
  2. Add the following to your .github/renovate.config.js

inspired by: nx-squeezer/squeezer