Skip to content

Validate example GitHub workflows #7

Validate example GitHub workflows

Validate example GitHub workflows #7

Workflow file for this run

name: actionlint
on:
pull_request:
paths:
- ".github/workflows/*.yml"
push:
branches:
- main
paths:
- ".github/workflows/*.yml"
workflow_dispatch:
permissions:
contents: read
pull-requests: write
jobs:
action-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check workflow files
uses: docker://rhysd/actionlint:latest
with:
args: |
-color $(find .github/workflows -name '*.yml' -type f ! -name
release.yml -print)