Populate maintainers from upstream MAINTAINERS #3
Workflow file for this run
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: Validate Project Metadata | |
| on: | |
| pull_request: | |
| paths: | |
| - 'project.yaml' | |
| - 'maintainers.yaml' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'project.yaml' | |
| - 'maintainers.yaml' | |
| workflow_dispatch: | |
| jobs: | |
| validate-project: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: cncf/automation/.github/actions/validate-project@95d25b12337a14e4a74f690c856f6903584e839e | |
| with: | |
| project_file: 'project.yaml' | |
| validate-maintainers: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: cncf/automation/.github/actions/validate-maintainers@95d25b12337a14e4a74f690c856f6903584e839e | |
| with: | |
| maintainers_file: 'maintainers.yaml' | |
| # Disabled until the LFX LLT issue is resolved. Validation is done manually for now. | |
| verify_maintainers: 'false' | |
| env: | |
| LFX_AUTH_TOKEN: ${{ secrets.LFX_AUTH_TOKEN }} |