ensure finalizers are set on all catalog apps + remove stale apps (#214) #437
This file contains hidden or 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: YAML Validation | |
| on: [push, workflow_dispatch] | |
| jobs: | |
| yaml-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout this repository | |
| uses: actions/checkout@v3.5.3 | |
| - name: Lint YAML files | |
| uses: karancode/yamllint-github-action@v2.1.1 | |
| with: | |
| yamllint_config_datapath: .yamllint.yml | |
| yamllint_strict: true | |
| env: | |
| GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} |