RHDHBUGS-137 fix the container version in the airgap with helm procedure #526
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: Verify style guide compliance on pull request | |
on: [pull_request] | |
jobs: | |
vale: | |
name: Linting with Vale | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Asciidoctor | |
run: sudo apt-get install -y asciidoctor | |
- name: Run Vale on new and modified content | |
uses: errata-ai/vale-action@v2.1.1 | |
with: | |
files: assemblies | |
vale_flags: "--minAlertLevel=warning" | |
reporter: github-pr-review | |
env: | |
GITHUB_TOKEN: ${{ secrets.RHDH_BOT_TOKEN }} | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.RHDH_BOT_TOKEN }} |