chore: tweak the help message to adopt the latest example branch name (release-1.y); also make output a bit quieter and fix a bug in the plugin naming for wrapped janus idp plugins #52
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: 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/[email protected] | |
| 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 }} |