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 f21f978 commit 90d7365Copy full SHA for 90d7365
.github/workflows/test.yml
@@ -1,11 +1,18 @@
1
name: Hakim testing
2
3
on:
4
- workflow_dispatch:
+ pull_request:
5
+ paths:
6
+ # the following should match `path:` declaration below
7
+ - example/**
8
9
jobs:
10
vale:
11
uses: couchbaselabs/docs-runner/.github/workflows/vale-review.yml@main
12
with:
- repo: ${{github.repository}}
13
path: example
14
+
15
+ pull_request_number: ${{ github.event.number }}
16
+ base_sha: ${{ github.event.pull_request.base.sha }}
17
+ head_sha: ${{ github.event.pull_request.head }}
18
+ repository: ${{github.repository}}
0 commit comments