Yongmin Hong
7b5aed5b48
Summary: Mostly lint and CIs Signed-off-by: Yongmin Hong <revi@omglol.email> Test Plan: Is there one? Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Differential Revision: https://issuetracker.revi.xyz/D78
22 lines
364 B
YAML
22 lines
364 B
YAML
---
|
|
name: YAML Lint
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**.yml'
|
|
- '**.yaml'
|
|
- '.yamllint'
|
|
pull_request:
|
|
paths:
|
|
- '**.yml'
|
|
- '**.yaml'
|
|
- '.yamllint'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
lint-everything:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: yaml-lint
|
|
uses: ibiqlik/action-yamllint@v3
|