feat: add eval summary report #77
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: GitHub Actions Linting | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/**' | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
actionlint: | |
name: Lint Github Actions | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v5 | |
- name: Run actionlint | |
uses: reviewdog/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-pr-review | |
level: error | |
fail_level: error | |
filter_mode: diff_context # TODO: prefer 'file' (default) after repo is compliant | |
actionlint_flags: > | |
-color | |
-ignore 'unknown permission scope "models"' |