Skip to content
Closed
Changes from 8 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
10 changes: 7 additions & 3 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,24 +34,28 @@ jobs:
- "zh"

steps:
- name: "Checkout"
- name: "Checkout doc-base"
uses: "actions/checkout@v4"
with:
path: "doc-base"
fetch-depth: 0

- name: "Checkout php/doc-${{ matrix.language }}"
- name: "Checkout doc-${{ matrix.language }}"
uses: "actions/checkout@v4"
with:
path: "${{ matrix.language }}"
repository: "php/doc-${{ matrix.language }}"

- name: "Checkout php/doc-en as fallback"
- name: "Checkout doc-en (fallback)"
if: "matrix.language != 'en'"
uses: "actions/checkout@v4"
with:
path: "en"
repository: "php/doc-en"

- name: "Pull merged doc-base changes from master"
run: "git -C doc-base merge --no-ff --no-commit origin/master"

- name: "Run QA scripts for EN docs"
if: "matrix.language == 'en'"
run: |
Expand Down
Loading