Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/renovate.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
// Self-hosted Renovate config for keeping @vercel/geistdocs current.
// Policy mirrors vercel/geistdocs//renovate/consumer (the canonical source);
// it's inlined here because geistdocs is private and this repo's scoped CI
// token can't read a cross-repo preset. Keep in sync with that preset.
module.exports = {
onboarding: false,
requireConfig: "optional",
repositories: ["vercel/streamdown"],
enabledManagers: ["npm"],
dependencyDashboard: true,

packageRules: [
// Manage only @vercel/geistdocs; leave every other dependency alone.
{
matchPackageNames: ["!@vercel/geistdocs"],
enabled: false,
},
{
matchPackageNames: ["@vercel/geistdocs"],
groupName: "geistdocs",
// Batch overnight to avoid mid-day churn.
schedule: ["after 1am and before 6am"],
},
// Auto-merge patch once required CI is green (nothing merges on red);
// minor and major open a review PR.
{
matchPackageNames: ["@vercel/geistdocs"],
matchUpdateTypes: ["patch"],
automerge: true,
automergeType: "pr",
platformAutomerge: true,
},
],

hostRules: [
{
hostType: "npm",
matchHost: "registry.npmjs.org",
token: process.env.RENOVATE_NPM_TOKEN,
},
],
};
77 changes: 77 additions & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Renovate

on:
# Daily within the overnight window used by the packageRules schedule.
schedule:
- cron: "0 2 * * *"
workflow_dispatch:
inputs:
repoCache:
description: "Reset or disable the cache?"
type: choice
default: enabled
options:
- enabled
- disabled
- reset

env:
cache_dir: /tmp/renovate/cache/renovate/repository
cache_key: renovate-cache

permissions:
contents: read
id-token: write

concurrency:
group: ${{ github.workflow }}

jobs:
renovate:
name: Renovate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
with:
persist-credentials: false

- name: Restore Renovate cache
id: cache-restore
if: github.event.inputs.repoCache != 'disabled' && github.event.inputs.repoCache != 'reset'
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ env.cache_dir }}
key: ${{ env.cache_key }}-${{ github.run_id }}-${{ github.run_attempt }}
restore-keys: |
${{ env.cache_key }}-

- name: Fix restored cache ownership
if: steps.cache-restore.outputs.cache-matched-key != ''
run: |
sudo chown -R 12021:0 /tmp/renovate/
ls -R $cache_dir

- name: Generate scoped GitHub token
id: github-sts
uses: vercel/gh-sts-action@56f891d4076b9f908ce459eb475d4c1884f75ada
with:
repos: vercel/streamdown
permissions: '{"contents":"write","issues":"write","pull_requests":"write","statuses":"write"}'

- name: Renovate
uses: renovatebot/github-action@22e0a16091fc706b04affe6ae53d5e3358ac4023 # v46.1.19
with:
configurationFile: .github/renovate.js
token: ${{ steps.github-sts.outputs.token }}
env:
RENOVATE_NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
RENOVATE_REPOSITORY_CACHE: ${{ github.event.inputs.repoCache || 'enabled' }}
LOG_LEVEL: debug

- name: Save Renovate cache
if: github.event.inputs.repoCache != 'disabled' && steps.cache-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ env.cache_dir }}
key: ${{ env.cache_key }}-${{ github.run_id }}-${{ github.run_attempt }}
Loading