Skip to content
Open
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
23 changes: 23 additions & 0 deletions .github/workflows/sync-temp-fix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Sync temp-fix branch from main"

# Manual-only trigger — docs team runs this when they know
# it's safe to update temp-fix without breaking docs builds.
on:
workflow_dispatch:

permissions:
contents: write

jobs:
sync:
runs-on: ubuntu-latest
environment: docs-sync-approval
steps:
- name: Checkout main
uses: actions/checkout@v4
with:
ref: main
fetch-depth: 0

- name: Force-push main to temp-fix
run: git push origin HEAD:refs/heads/temp-fix --force