Workflow updates (#5384)

This commit is contained in:
Jesse Hills
2023-09-13 10:06:32 +12:00
committed by GitHub
parent dadbc1aefa
commit bff74af882
8 changed files with 62 additions and 49 deletions

22
.github/workflows/yaml-lint.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: YAML lint
on:
push:
branches: [dev, beta, release]
paths:
- "**.yaml"
- "**.yml"
pull_request:
paths:
- "**.yaml"
- "**.yml"
jobs:
yamllint:
name: yamllint
runs-on: ubuntu-latest
steps:
- name: Check out code from GitHub
uses: actions/checkout@v4.0.0
- name: Run yamllint
uses: frenck/action-yamllint@v1.4.1