setup-renovate-for-tuist
Setup Renovate for Tuist
Renovate automates dependency update PRs for your Tuist iOS project. This skill creates the correct renovate.json based on your project's integration style and package format.
Preflight Checklist
Before starting:
- Confirm the project uses Tuist (look for
Tuist.swiftorTuist/directory) - Identify the integration style (see below)
- Check whether Tuist registry is enabled
- Confirm the project is hosted on GitHub (Renovate GitHub App or self-hosted)
Step 1 — Detect Integration Style
Check where packages are declared:
Tuist/Package.swift-based — look for non-empty dependencies array:
// Tuist/Package.swift
let package = Package(
dependencies: [
.package(url: "https://github.com/firebase/firebase-ios-sdk", from: "11.8.1")
]
)
Project.swift-based — search for Project.swift files anywhere in the project that contain a non-empty packages: array:
grep -rl "packages:" --include="Project.swift" .
// (location varies per project)
let project = Project(
packages: [
.remote(url: "https://github.com/firebase/firebase-ios-sdk", requirement: .upToNextMajor(from: "11.8.1"))
]
)
A project uses one style only. If
Tuist/Package.swifthas non-empty dependencies → Tuist/Package.swift-based. If anyProject.swiftfile has a non-emptypackages:array → Project.swift-based.
Step 2 — Detect Package Format
Within the detected files, check whether packages use URL format or registry format:
| Format | Example |
|---|---|
| URL-based | .package(url: "https://github.com/firebase/firebase-ios-sdk", from: "11.8.1") |
| Registry-based | .package(id: "firebase.firebase-ios-sdk", from: "11.8.1") |
| URL-based (Project.swift) | .remote(url: "https://github.com/...", requirement: .upToNextMajor(from: "1.0.0")) |
Also note any packages using requirement: .branch("...") — these cannot be tracked by Renovate and should be left out (see Branch Dependencies below).
Step 3 — Check for mise.toml
Check if mise.toml exists in the project root. If yes, Renovate can also update tool versions (tuist, swiftlint, etc.) automatically.
Step 4 — Create renovate.json
Create renovate.json in the project root based on the detected configuration.
Case A: Tuist/Package.swift + URL-based packages (most common)
The Renovate Swift manager natively handles Package.swift files. The default pattern /(^|/)Package\.swift/ already matches Tuist/Package.swift.
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"packageRules": [
{
"matchManagers": ["swift"],
"groupName": "Swift dependencies",
"schedule": ["before 9am on monday"]
}
]
}
Case B: Tuist/Package.swift + Registry-based packages (id: format)
Renovate's Swift manager only understands url:-based packages. For id:-based registry packages, use customManagers with a regex that:
- Handles both
from:andexact:requirements - Matches multiline declarations (packages formatted across multiple lines will be silently missed otherwise)
- Transforms dot notation to slash notation for GitHub lookups (
firebase.firebase-ios-sdk→firebase/firebase-ios-sdk) - Uses triple braces
{{{ }}}inpackageNameTemplateto prevent HTML-escaping the/
Use two managers (releases + tags) as fallback since some packages only publish tags, not releases:
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"enabledManagers": ["custom.regex"],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": ["/Tuist/Package\\.swift/"],
"matchStrings": [
"\\.package\\(id:\\s*\"(?<depName>[\\w\\-.]+?)\"[\\s\\S]*?(?:from|exact):\\s*\"(?<currentValue>[^\"]+)\"\\)"
],
"datasourceTemplate": "github-releases",
"packageNameTemplate": "{{{replace '\\.' '/' depName}}}"
},
{
"customType": "regex",
"managerFilePatterns": ["/Tuist/Package\\.swift/"],
"matchStrings": [
"\\.package\\(id:\\s*\"(?<depName>[\\w\\-.]+?)\"[\\s\\S]*?(?:from|exact):\\s*\"(?<currentValue>[^\"]+)\"\\)"
],
"datasourceTemplate": "github-tags",
"packageNameTemplate": "{{{replace '\\.' '/' depName}}}"
}
],
"packageRules": [
{
"matchManagers": ["custom.regex"],
"groupName": "Swift dependencies",
"schedule": ["before 9am on monday"]
}
]
}
Note on dotted repo names: If a repo name had dots replaced with underscores (e.g.,
groue.GRDB_swift), thepackageNameTemplatereplacementgroue/GRDB_swiftwon't match the real GitHub repogroue/GRDB.swift. For these packages, add an explicitpackageRulesoverride:{ "matchPackageNames": ["groue.GRDB_swift"], "packageName": "groue/GRDB.swift" }
Case C: Project.swift-based + URL-based packages
Project.swift uses .remote(url:) which is a Tuist-specific syntax, not standard SPM. Renovate's Swift manager won't parse this. The regex must:
- Handle multiline declarations
- Handle optional
https://prefix and.gitsuffix - Cover all requirement types:
.upToNextMajor,.upToNextMinor,.exact
Use two managers (releases + tags) as fallback:
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"enabledManagers": ["custom.regex"],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": ["/(^|/)Project\\.swift$/"],
"matchStrings": [
"\\.remote\\(url:\\s*\"(?:https?:\\/\\/)?github\\.com\\/(?<depName>[\\w\\-_]+\\/[\\w\\-_.]+?)(?:\\.git)?\"[\\s\\S]*?requirement:\\s*\\.(?:upToNextMajor|upToNextMinor)\\(from:\\s*\"(?<currentValue>[^\"]+)\"\\)"
],
"datasourceTemplate": "github-releases"
},
{
"customType": "regex",
"managerFilePatterns": ["/(^|/)Project\\.swift$/"],
"matchStrings": [
"\\.remote\\(url:\\s*\"(?:https?:\\/\\/)?github\\.com\\/(?<depName>[\\w\\-_]+\\/[\\w\\-_.]+?)(?:\\.git)?\"[\\s\\S]*?requirement:\\s*\\.(?:upToNextMajor|upToNextMinor)\\(from:\\s*\"(?<currentValue>[^\"]+)\"\\)"
],
"datasourceTemplate": "github-tags"
},
{
"customType": "regex",
"managerFilePatterns": ["/(^|/)Project\\.swift$/"],
"matchStrings": [
"\\.remote\\(url:\\s*\"(?:https?:\\/\\/)?github\\.com\\/(?<depName>[\\w\\-_]+\\/[\\w\\-_.]+?)(?:\\.git)?\"[\\s\\S]*?requirement:\\s*\\.exact\\(\"(?<currentValue>[^\"]+)\"\\)"
],
"datasourceTemplate": "github-releases"
},
{
"customType": "regex",
"managerFilePatterns": ["/(^|/)Project\\.swift$/"],
"matchStrings": [
"\\.remote\\(url:\\s*\"(?:https?:\\/\\/)?github\\.com\\/(?<depName>[\\w\\-_]+\\/[\\w\\-_.]+?)(?:\\.git)?\"[\\s\\S]*?requirement:\\s*\\.exact\\(\"(?<currentValue>[^\"]+)\"\\)"
],
"datasourceTemplate": "github-tags"
}
],
"packageRules": [
{
"matchManagers": ["custom.regex"],
"groupName": "Swift dependencies",
"schedule": ["before 9am on monday"]
}
]
}
Case D: Mixed (URL + registry packages)
Combine the customManagers entries from Case B and Case C. Set enabledManagers to include only the managers you use:
{
"enabledManagers": ["custom.regex"]
}
Branch Dependencies
Packages declared with requirement: .branch("...") use mutable Git refs — there is no semantic version for Renovate to track. Do not add regex patterns for these. If Renovate picks them up accidentally, disable them explicitly:
{
"matchDatasources": ["git-refs"],
"enabled": false
}
Adding mise.toml support (optional)
If mise.toml exists, add mise to enabledManagers:
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"enabledManagers": ["mise", "custom.regex"],
"packageRules": [
{
"matchManagers": ["mise"],
"groupName": "Dev tools",
"schedule": ["before 9am on monday"]
}
]
}
The
misemanager readsmise.tomland updates tool versions liketuist,swiftlint, etc.
Recommended packageRules additions (optional)
Consider adding these to control merge behaviour:
{
"packageRules": [
{
"matchUpdateTypes": ["patch"],
"automerge": true,
"automergeType": "branch"
},
{
"matchUpdateTypes": ["minor"],
"automerge": false
},
{
"matchUpdateTypes": ["major"],
"automerge": false
}
]
}
And these top-level options to prevent PR floods:
{
"prConcurrentLimit": 3,
"prHourlyLimit": 2
}
Step 5 — Dry-run Verification
Run a local dry-run to confirm the renovate.json detects the expected packages before merging.
Check if Renovate is installed:
renovate --version
- If installed → proceed to run the dry-run below.
- If not installed → ask the user: "Renovate is not installed. Can I install it with
npm install -g renovate?" Only install if the user confirms.
Run the dry-run:
RENOVATE_TOKEN=<github-pat> renovate --dry-run=full <org>/<repo>
A GitHub PAT with repo scope is required. Ask the user to provide it if not already available in the environment.
What to check in the output:
- Each expected package appears as a detected dependency with its current version
- No
matched 0 fileswarnings for yourmanagerFilePatterns - Registry packages show the correct transformed
depName(e.g.firebase/firebase-ios-sdk, notfirebase.firebase-ios-sdk)
If a package is missing:
- Paste the actual Swift declaration (including surrounding lines) into regex101.com using the JavaScript flavor
- Test the failing
matchStringspattern directly - Common culprits: multiline declaration not matched by
[\s\S]*?, unhandled requirement type (e.g..upToNextMinor,.exact)
Step 6 — Enable Renovate
Choose one of the two approaches:
Option A: Renovate GitHub App (recommended)
- Install the Renovate GitHub App on the repository.
- Merge the
renovate.json— Renovate will auto-create an onboarding PR, then begin raising dependency update PRs.
No additional files needed.
Option B: Self-hosted via GitHub Actions
Create .github/workflows/renovate.yml:
name: Renovate
on:
schedule:
- cron: '0 8 * * 1' # Every Monday at 8am UTC
workflow_dispatch:
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: renovatebot/github-action@v40
with:
configurationFile: renovate.json
token: ${{ secrets.RENOVATE_TOKEN }}
Set RENOVATE_TOKEN in GitHub repository secrets (a PAT with repo scope).
Step 7 — Verify
After merging:
- Renovate creates a Configure Renovate PR (if using GitHub App) — merge it
- Renovate opens PRs for outdated packages on the configured schedule
- Check
https://app.renovatebot.com/dashboardfor run logs
Common Issues
| Issue | Fix |
|---|---|
| No PRs created | Confirm renovate.json is valid JSON; check app dashboard for errors |
customManagers not matching |
Test the regex against your actual Swift file at regex101.com (use JavaScript flavor) |
| Multiline declarations not detected | Ensure [\\s\\S]*? is used instead of .+? in matchStrings |
| Registry package PRs have wrong version | Override packageName in packageRules to point to the correct GitHub repo |
| Renovate opens too many PRs at once | Add "prConcurrentLimit": 3 to renovate.json |
| Package updates break build | Add "automerge": false (it's the default — confirm it's not set to true) |
| Renovate scan is very slow | Add "enabledManagers": ["custom.regex"] to skip irrelevant built-in managers |
Done Checklist
-
renovate.jsoncreated in project root with correct config for detected style - JSON is valid (no syntax errors)
-
customManagersregex tested against actual Swift file content (including multiline examples) - Branch dependencies excluded or disabled
-
renovate --dry-runconfirms all expected packages are detected - Renovate GitHub App installed OR
.github/workflows/renovate.ymlcreated -
RENOVATE_TOKENsecret set (self-hosted only)