Skip to content

Add backstage record set #23

Add backstage record set

Add backstage record set #23

Workflow file for this run

---
name: Yaml Linting
on:
pull_request:
paths: ['**.yaml', '**.yml']
jobs:
yamllint:
name: Yamllint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Yamllint
uses: ibiqlik/action-yamllint@v3
with:
config_file: .yamllint
...