Skip to content

Initial .project scaffold for cozystack #2

Initial .project scaffold for cozystack

Initial .project scaffold for cozystack #2

Workflow file for this run

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'
verify_maintainers: 'true'
env:
LFX_AUTH_TOKEN: ${{ secrets.LFX_AUTH_TOKEN }}