Skip to content

WIX6: stabilize bundle StdBA payloads + parity updates #444

WIX6: stabilize bundle StdBA payloads + parity updates

WIX6: stabilize bundle StdBA payloads + parity updates #444

name: COPILOT docs detection
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
detect:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4

Check failure on line 12 in .github/workflows/copilot-docs-detect.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/copilot-docs-detect.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Detect folders needing COPILOT updates
shell: pwsh
run: |
python .github/detect_copilot_needed.py --base "origin/$env:GITHUB_BASE_REF" --strict
- name: Scaffold changed COPILOT docs (advisory)
if: ${{ always() }}
shell: pwsh
run: |
python .github/scaffold_copilot_markdown.py --base "origin/$env:GITHUB_BASE_REF"
continue-on-error: true
- name: Validate COPILOT structure (optional)
if: ${{ always() }}
shell: pwsh
run: |
python .github/check_copilot_docs.py --only-changed --base "origin/$env:GITHUB_BASE_REF" --fail
continue-on-error: true