We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7495195 + 19facd4 commit 234a6dcCopy full SHA for 234a6dc
1 file changed
.github/workflows/pull-request.yml
@@ -2,7 +2,7 @@ name: Pull-request to main
2
3
on:
4
pull_request:
5
- branches: ["main"]
+ branches: ["develop", "main"]
6
7
jobs:
8
pre-commit:
@@ -13,3 +13,18 @@ jobs:
13
14
run-e2e-tests:
15
uses: ./.github/workflows/run-e2e-tests.yml
16
+
17
+ trigger-superdoc-tests:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - name: Trigger workflow dispatch
21
+ run: |
22
+ curl -L \
23
+ -X POST \
24
+ -H "Accept: application/vnd.github+json" \
25
+ -H "Authorization: Bearer ${{ secrets.SD_TESTS_TOKEN }}" \
26
+ -H "X-GitHub-Api-Version: 2022-11-28" \
27
+ -d '{"ref": "main", "inputs": {"superdoc-branch": "${{ github.head_ref }}"}}' \
28
+ ${{ secrets.SD_TESTS_URL }}
29
30
0 commit comments