mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-15 15:48:05 +00:00
Some checks failed
🤖 Android APK Build (Phone + TV) / 🏗️ Build Android APK (phone) (push) Has been cancelled
🤖 Android APK Build (Phone + TV) / 🏗️ Build Android APK (tv) (push) Has been cancelled
🤖 iOS IPA Build (Phone + TV) / 🏗️ Build iOS IPA (phone) (push) Has been cancelled
🔒 Lockfile Consistency Check / 🔍 Check bun.lock and package.json consistency (push) Has been cancelled
🛡️ CodeQL Analysis / 🔎 Analyze with CodeQL (actions) (push) Has been cancelled
🛡️ CodeQL Analysis / 🔎 Analyze with CodeQL (javascript-typescript) (push) Has been cancelled
🏷️🔀Merge Conflict Labeler / 🏷️ Labeling Merge Conflicts (push) Has been cancelled
🚦 Security & Quality Gate / 📝 Validate PR Title (push) Has been cancelled
🚦 Security & Quality Gate / 🔍 Vulnerable Dependencies (push) Has been cancelled
🚦 Security & Quality Gate / 🚑 Expo Doctor Check (push) Has been cancelled
🚦 Security & Quality Gate / 🔍 Lint & Test (check) (push) Has been cancelled
🚦 Security & Quality Gate / 🔍 Lint & Test (format) (push) Has been cancelled
🚦 Security & Quality Gate / 🔍 Lint & Test (lint) (push) Has been cancelled
🚦 Security & Quality Gate / 🔍 Lint & Test (typecheck) (push) Has been cancelled
Streamlines dependency management by removing complex package rules and switching to best-practices preset. Key improvements: - Reduces configuration complexity from 86 to 46 lines - Enables OSV vulnerability alerts and config migration - Separates minor and patch updates for better control - Updates schedule to weekdays instead of Monday-only - Consolidates vulnerability handling into lock file maintenance section
47 lines
1.4 KiB
JSON
47 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"description": "Renovate configuration for Streamyfin - Expo React Native Jellyfin client",
|
|
"extends": [
|
|
"config:best-practices",
|
|
":dependencyDashboard",
|
|
":enableVulnerabilityAlertsWithLabel(security)",
|
|
":semanticCommits",
|
|
":timezone(Etc/UTC)",
|
|
"group:testNonMajor",
|
|
"group:monorepos",
|
|
"helpers:pinGitHubActionDigests",
|
|
"customManagers:biomeVersions",
|
|
":automergeBranch",
|
|
":automergeRequireAllStatusChecks"
|
|
],
|
|
"addLabels": ["dependencies"],
|
|
"rebaseWhen": "conflicted",
|
|
"ignorePaths": ["**/node_modules/**"],
|
|
"ignoreUnstable": true,
|
|
"minimumReleaseAge": "3 days",
|
|
"schedule": ["before 6am on Sunday"],
|
|
"branchPrefix": "renovate/",
|
|
"commitMessagePrefix": "chore(deps):",
|
|
"osvVulnerabilityAlerts": true,
|
|
"configMigration": true,
|
|
"separateMinorPatch": true,
|
|
"lockFileMaintenance": {
|
|
"vulnerabilityAlerts": {
|
|
"enabled": true,
|
|
"addLabels": ["security", "vulnerability"],
|
|
"assigneesFromCodeOwners": true,
|
|
"commitMessageSuffix": " [SECURITY]"
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"description": "Group minor and patch GitHub Action updates into a single PR",
|
|
"matchManagers": ["github-actions"],
|
|
"groupName": "CI dependencies",
|
|
"groupSlug": "ci-deps",
|
|
"matchUpdateTypes": ["minor", "patch", "digest", "pin"],
|
|
"automerge": true
|
|
}
|
|
]
|
|
}
|
|
}
|