Naming conventions (#178) #19
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: 'SFTI Lint Specifications: Yaml Compliance' | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
filenames: | |
type: string | |
default: '*.yaml' | |
description: 'Files to be linted (list of files sperated by a whitespace). Default: *.yaml' | |
jobs: | |
yaml-lint: | |
uses: swissfintechinnovations/.github/.github/workflows/reusable-lint-yaml-workflow.yaml@main | |
with: | |
filenames: ${{ github.event.inputs.filenames || '*.yaml' }} |