Add a configuration to serve a local directory with a static handler #8248
Workflow file for this run
This file contains hidden or 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: Linting with Vale | |
| on: | |
| pull_request: | |
| paths: | |
| - 'docs/src/main/asciidoc/**' | |
| - '.github/workflows/vale.yml' | |
| concurrency: | |
| group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}" | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'quarkusio/quarkus' }} | |
| jobs: | |
| vale: | |
| name: Linting with Vale | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| checks: read | |
| contents: read | |
| pull-requests: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Vale Linter | |
| continue-on-error: true | |
| uses: errata-ai/vale-action@reviewdog | |
| with: | |
| fail_on_error: false | |
| vale_flags: "--no-exit --config=docs/.vale.ini" | |
| filter_mode: diff_context | |
| files: docs/src/main/asciidoc/ | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |