feat: Request header access from endpoint #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
workflow_dispatch: # Manually triggered workflow until docs are ready | |
pull_request: | |
paths: | |
- 'docs/**' | |
# push: | |
# branches: | |
# - main | |
# tags-ignore: [ v.* ] | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
# make-docs: | |
# name: "Make docs" | |
# runs-on: ubuntu-22.04 | |
# steps: | |
# - name: Checkout | |
# # https://github.com/actions/checkout/releases | |
# # v4.1.1 | |
# uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
# | |
# - name: Cache Coursier cache | |
# # https://github.com/coursier/cache-action/releases | |
# # v6.4.5 | |
# uses: coursier/cache-action@1ff273bff02a8787bc9f1877d347948af647956d | |
# | |
# - name: Set up JDK 21 | |
# # https://github.com/coursier/setup-action/releases | |
# # v1.3.5 | |
# uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f | |
# with: | |
# jvm: temurin:1.21 | |
# | |
# - name: Make docs and validate links | |
# run: make managed local validate-links | |
vale: | |
name: "Vale style checking" | |
runs-on: ubuntu-22.04 | |
if: github.event.repository.fork == false | |
steps: | |
- name: Checkout | |
# https://github.com/actions/checkout/releases | |
# v4.1.1 | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Install Asciidoctor | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y asciidoctor | |
# https://vale.sh | |
- name: Vale | |
# https://github.com/errata-ai/vale-action/releases | |
# v2.1.1 | |
uses: errata-ai/vale-action@d89dee975228ae261d22c15adcd03578634d429c | |
with: | |
version: 3.7.1 | |
files: docs/src | |
fail_on_error: true | |
filter_mode: nofilter | |
vale_flags: "--config=docs/.vale.ini" | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
verify-include-paths: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
# https://github.com/actions/checkout/releases | |
# v4.1.1 | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Run path verification script | |
run: | |
./docs/bin/verify-include-paths.sh |