fix: Let user override default configuration for kafka exporter #8027
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: Docs validation | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-doc-build: | |
name: Test documentation build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- name: Get changed files in the docs folder | |
id: changed-files-specific | |
uses: marceloprado/[email protected] | |
with: | |
paths: ./website/ | |
- name: Test Build website | |
if: steps.changed-files-specific.outputs.changed == 'true' | |
run: make build-doc |