Update collection-index.yml to include fexec #9
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: 'Lint collection-index.yml' | ||
|
Check failure on line 1 in .github/workflows/lint.yml
|
||
| on: | ||
| pull_request: | ||
| paths: | ||
| - _data/collection-index.yml | ||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
| jobs: | ||
| yamllint: | ||
| name: 'Yamllint' | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: 'Checkout' | ||
| uses: actions/checkout@v6 | ||
| - name: 'Yamllint' | ||
| uses: karancode/yamllint-github-action@@v2.1.1 | ||
| with: | ||
| yamllint_file_or_dir: _data/collection-index.yml | ||
| yamllint_strict: true | ||
| yamllint_config_filepath: .github/lint-config.yaml | ||
| yamllint_comment: true | ||
| env: | ||
| GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||