Skip to content

Commit d982695

Browse files
authored
feat: Add GitHub Actions workflow to automatically update the Mintlify project. (#915)
1 parent 42d9efc commit d982695

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Update Mintlify Project
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
9+
jobs:
10+
update-mintlify:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Update Project
14+
run: |
15+
curl --request POST \
16+
--url https://api.mintlify.com/v1/project/update/66e14ea9d394192900ae6972 \
17+
--header 'Authorization: Bearer ${{ secrets.MINTIFY_SECRET_KEY }}'

0 commit comments

Comments
 (0)