Initial commit #1
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
#Validation script for Industry-Product-Configurator | |
#This is used to validate your catalog-info.yaml | |
name: Validate Catalog-info.yaml | |
on: | |
pull_request: | |
paths: | |
- 'catalog-info.yaml' | |
push: | |
paths: | |
- 'catalog-info.yaml' | |
branches: [main] | |
jobs: | |
validate_catalog: | |
runs-on: ubuntu-latest | |
steps: | |
- id: 'Checkout' | |
uses: actions/checkout@v3 | |
- id: 'Validate' | |
uses: 'RoadieHQ/[email protected]' |