We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e210cf commit d6c88e6Copy full SHA for d6c88e6
.github/workflows/gitbook-action.yml renamed to .github/workflows/publish.yml
@@ -1,4 +1,4 @@
1
-name: 'Gitbook Action Build'
+name: 'Publish'
2
on:
3
push:
4
branches:
.github/workflows/pull-request.yml
@@ -0,0 +1,16 @@
+name: 'Pull Request'
+on:
+ pull_request:
+ branches:
5
+ - main # trigger branch
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout action
11
+ uses: actions/checkout@v2
12
+ - name: Gitbook Action
13
+ uses: modelbox-ai/gitbook-action@master
14
+ with:
15
+ source_branch: main
16
+ pull_request: true
0 commit comments