Yongmin Hong
b1740bd0cd
Summary: Thanks pinterest! Also fix some GitHub Actions error. Signed-off-by: Yongmin Hong <revi@omglol.email> Test Plan: run `arc lint`? Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Differential Revision: https://issuetracker.revi.xyz/D325
23 lines
381 B
YAML
23 lines
381 B
YAML
---
|
|
name: YAML Lint
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**.yml'
|
|
- '**.yaml'
|
|
- '.yamllint'
|
|
pull_request:
|
|
paths:
|
|
- '**.yml'
|
|
- '**.yaml'
|
|
- '.yamllint'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
yaml-lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: yaml-lint
|
|
uses: ibiqlik/action-yamllint@v3
|