[docs-infra] Add pointer cursor on hover for logo to improve UX #12245
Workflow file for this run
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: Vale action | |
on: [pull_request] | |
permissions: {} | |
jobs: | |
vale: | |
name: runner / vale | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
- uses: errata-ai/vale-action@38bf078c328061f59879b347ca344a718a736018 # v2.1.0 | |
continue-on-error: true # GitHub Action flag needed until https://github.com/errata-ai/vale-action/issues/89 is fixed | |
with: | |
# Errors should be more visible | |
fail_on_error: true | |
# The other reports don't work, not really https://github.com/reviewdog/reviewdog#reporters | |
reporter: github-pr-check | |
# Required, set by GitHub actions automatically: | |
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#about-the-github_token-secret | |
token: ${{secrets.GITHUB_TOKEN}} |