Skip to content

Commit 9eba5a5

Browse files
committed
basic changes
1 parent 6665df6 commit 9eba5a5

2 files changed

Lines changed: 40 additions & 0 deletions

File tree

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Aggregate Mintlify Docs
2+
3+
on:
4+
push:
5+
branches:
6+
- main # Or your default branch for the base repo
7+
workflow_dispatch:
8+
9+
concurrency:
10+
group: aggregate-mintlify-docs
11+
cancel-in-progress: true
12+
13+
jobs:
14+
aggregate-docs:
15+
runs-on: ubuntu-latest
16+
name: Aggregate Mintlify Docs
17+
18+
steps:
19+
- name: Clone base repo
20+
uses: actions/checkout@v4
21+
with:
22+
fetch-depth: 0
23+
24+
- name: Run Mintlify Multirepo Action
25+
uses: mintlify/multirepo-action@v1 # Check for the latest version
26+
with:
27+
token: ${{ secrets.mlfy }}
28+
repos: |
29+
- owner: Fulgerr
30+
repo: docs
31+
ref: main
32+
# Path to the DIRECTORY containing mint.config.json in Repo A
33+
subdirectory: docs # e.g., 'docs' or empty if root
34+
- owner: Fulgerr
35+
repo: docsA
36+
ref: main
37+
# Path to the DIRECTORY containing mint.config.json in Repo B
38+
subdirectory: '' # e.g., empty if root
39+
target-branch: docs-compiled
40+
force: true
File renamed without changes.

0 commit comments

Comments
 (0)