From 47425080707b82a2048a4205a86847b29bac7046 Mon Sep 17 00:00:00 2001 From: Don Kendall Date: Wed, 20 May 2026 14:23:48 -0400 Subject: [PATCH] feat(forks): track ledoent/sentry@master via fork-sync-and-digest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The fork-sync-and-digest org workflow already merge-upstream's all forks listed in forks.yml. Add ledoent/sentry so its master gets the same daily FF from getsentry/sentry. Without this, master sits frozen at fork-creation time and every PR from a *-kencove rebase branch shows false conflicts against an obsolete base. ledoent/seer's upstream (getsentry/seer) is private — the merge-upstream API call would 404 with our PAT. Documented as a commented-out entry so the next person looking knows we considered it; actual sync stays manual via the feature/explorer-endpoints rebase pattern. --- .github/forks.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/forks.yml b/.github/forks.yml index 0bb92af..517c077 100644 --- a/.github/forks.yml +++ b/.github/forks.yml @@ -146,3 +146,25 @@ forks: upstream_org: null upstream_track: null install_forward_port: false + + # === self-hosted Sentry stack === + # Sentry uses calendar versioning (26.x) + a fast-moving master. + # We track master so PR conflict detection on *-kencove rebase + # branches actually reflects reality. Without the sync, the fork's + # master sits frozen at fork-creation time (Feb 2026, 26.2.0) and + # every PR shows false conflicts against an obsolete base. + - repo: ledoent/sentry + branches: ["master"] + upstream_org: null # no [MIG]-style PR digest for non-OCA forks + upstream_track: null + install_forward_port: false + + # ledoent/seer's upstream (getsentry/seer) is private, so the + # merge-upstream API call would 404 with our PAT. Tracked here only + # to document that we know it exists; sync stays manual via the + # feature/explorer-endpoints rebase pattern. + # - repo: ledoent/seer + # branches: ["main"] + # upstream_org: null + # upstream_track: null + # install_forward_port: false