Memorable Quotes Gemini Experiment #230
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: Workflow Validation | |
on: | |
pull_request: | |
paths: | |
- '.github/**.yml' | |
concurrency: | |
group: workflow-validation-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint-actions: | |
name: Lint Actions | |
runs-on: ubuntu-latest | |
timeout-minutes: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: reviewdog/action-actionlint@v1 | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
# Neither inline shellcheck nor `actionlint_flags` | |
# disable a rule, so this must be disabled using | |
# an env variable. | |
SHELLCHECK_OPTS: "-e SC2129" |