Skip to content

fix bold

fix bold #465

Workflow file for this run

name: Pull-request to main
on:
pull_request:
branches: ["develop", "main"]
jobs:
pre-commit:
uses: ./.github/workflows/pre-commit.yml
run-unit-tests:
uses: ./.github/workflows/run-unit-tests.yml
trigger-superdoc-tests:
runs-on: ubuntu-latest
steps:
- name: Trigger workflow dispatch
run: |
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.SUPERDOC_PAT }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
-d '{"ref": "main", "inputs": {"superdoc-branch": "${{ github.head_ref }}", "pull-request-url": "${{ github.event.pull_request.html_url }}"}}' \
${{ secrets.SD_TESTS_URL }}