mirror of
https://github.com/nexu-io/open-design.git
synced 2026-05-31 19:04:39 +07:00
* ci: gate fork PR workflow auto-approval * ci: rename fork PR approval workflow * ci: normalize fork workflow paths Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): match action_required workflow runs Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): denylist tool config paths Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): retry action_required workflow lookup Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): restrict fork workflow approvals to target PR Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): keep polling fork workflow approvals Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): revalidate fork workflow approvals before approving Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): poll longer for first fork approval run Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): make fork approval poll budget configurable Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): drop stale fork approval runs Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): deny dotted tsconfig variants in fork approvals Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): run fork approval regression in guard Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): refresh Nix pnpm deps hash Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * test(web): mock useI18n in reattach restore test Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): accept status-only fork approvals Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): rerun fork approval on retarget Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): ignore base tip churn in PR association Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): broaden pending approval run fetch Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): skip non-retarget fork approval edits Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): checkout visual comment workflow head Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): paginate workflow approval run lookup Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): harden fork workflow follow-ups Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): honor full post-appearance settling window Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode) * fix(ci): validate manual visual comment checkout Generated-By: looper 0.0.0-dev (runner=fixer, agent=opencode)
74 lines
2.2 KiB
YAML
74 lines
2.2 KiB
YAML
name: visual-pr-capture
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
paths:
|
|
- 'apps/web/**'
|
|
- '.github/actions/visual-screenshot/**'
|
|
- '.github/workflows/visual-*.yml'
|
|
- 'e2e/package.json'
|
|
- 'e2e/playwright.visual.config.ts'
|
|
- 'e2e/lib/playwright/**'
|
|
- 'e2e/scripts/playwright.ts'
|
|
- 'e2e/scripts/visual-report.ts'
|
|
- 'e2e/ui/visual-*.test.ts'
|
|
- 'pnpm-lock.yaml'
|
|
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: visual-pr-capture-${{ github.event.pull_request.number }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
capture:
|
|
name: Capture PR visual screenshots
|
|
if: ${{ !github.event.pull_request.draft }}
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 30
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6.0.2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Prepare visual screenshot environment
|
|
uses: ./.github/actions/visual-screenshot
|
|
|
|
- name: Capture PR screenshots
|
|
id: capture
|
|
continue-on-error: true
|
|
env:
|
|
OD_VISUAL_OUTPUT_DIR: ui/reports/visual-screenshots
|
|
run: |
|
|
pnpm -C e2e exec tsx scripts/playwright.ts clean
|
|
pnpm -C e2e exec playwright test -c playwright.visual.config.ts
|
|
|
|
- name: Write capture manifest
|
|
run: |
|
|
mkdir -p e2e/ui/reports/visual-report
|
|
cat > e2e/ui/reports/visual-report/manifest.json <<'JSON'
|
|
{
|
|
"pr_number": "${{ github.event.pull_request.number }}",
|
|
"head_sha": "${{ github.event.pull_request.head.sha }}",
|
|
"base_sha": "${{ github.event.pull_request.base.sha }}",
|
|
"run_id": "${{ github.run_id }}",
|
|
"capture_outcome": "${{ steps.capture.outcome }}"
|
|
}
|
|
JSON
|
|
|
|
- name: Upload PR visual artifact
|
|
if: ${{ always() }}
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: visual-pr-capture-${{ github.event.pull_request.number }}-${{ github.run_id }}
|
|
path: |
|
|
e2e/ui/reports/visual-screenshots
|
|
e2e/ui/reports/visual-results.json
|
|
e2e/ui/reports/visual-report/manifest.json
|
|
if-no-files-found: ignore
|
|
retention-days: 7
|