Adding Cloud Cost Management API Documentation #35935
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: Linting | |
on: | |
pull_request: | |
paths: | |
- 'content/en/**/*' | |
- 'layouts/shortcodes/**/*.md' | |
jobs: | |
prose: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Clone Datadog Vale | |
uses: actions/checkout@v3 | |
with: | |
repository: DataDog/datadog-vale | |
path: datadog-vale | |
- name: Edit StylesPath in Vale config file | |
run: sed -i 's/\.\.\/datadog-vale\/styles/datadog-vale\/styles/' .vale.ini | |
- name: Run Vale | |
uses: errata-ai/vale-action@reviewdog | |
with: | |
reporter: github-pr-check | |
fail_on_error: true | |
filter_mode: added | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |