chore(changelog): update catalog history #220
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 Catalog | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate-catalog: | |
| name: validate-catalog | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout catalog | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Checkout aio-fleet | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| repository: JSONbored/aio-fleet | |
| ref: c4099c09cb2375a0f5a5a822a0f8af02a77d0526 | |
| path: .aio-fleet | |
| - name: Install aio-fleet | |
| run: python3 -m pip install ./.aio-fleet | |
| - name: Validate catalog | |
| run: python3 -m aio_fleet --manifest .aio-fleet/fleet.yml validate-catalog --catalog-path . | |
| - name: Validate README inventory | |
| run: python3 scripts/validate-readme-inventory.py |