MP1.36-Pre: Titan skin cleanup #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Workflow / XML validate | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "**.xml" | |
pull_request: | |
paths: | |
- "**.xml" | |
workflow_dispatch: | |
jobs: | |
yamllint: | |
name: 🧹 XML Validate | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⤵️ Check out configuration from GitHub | |
uses: actions/checkout@v4 | |
- name: 🚀 Run XML Validate | |
uses: kehoecj/validate-configs-action@v4 | |
with: | |
exclude-dirs: "MediaPortal.Tests" | |
exclude-file-types: "yaml,yml" |