Skip to content

CI: test automatic README.md updating #1

CI: test automatic README.md updating

CI: test automatic README.md updating #1

Workflow file for this run

name: "Update README daily"
author: valgur

Check failure on line 2 in .github/workflows/daily.yml

View workflow run for this annotation

GitHub Actions / Update README daily

Invalid workflow file

The workflow is not valid. .github/workflows/daily.yml (Line: 2, Col: 1): Unexpected value 'author' .github/workflows/daily.yml (Line: 10, Col: 5): Required property is missing: runs-on
on:
push:
# schedule:
# - cron: "33 3 * * *"
# workflow_dispatch:
jobs:
update_readme:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install prereqs
run: pip install -U yq
- name: Get changed files
run: |
cd recipes
find -maxdepth 1 * -name config.yml | sort | while read f; do pkg=$(dirname "$f"); yq --raw-output '.versions | "'"$pkg/"'" + keys_unsorted[]' $f | sort; done | tee dev.list