Skip to content

CI: test automatic README.md updating #2

CI: test automatic README.md updating

CI: test automatic README.md updating #2

Workflow file for this run

name: "Update README daily"
on:
push:
# schedule:
# - cron: "33 3 * * *"
# workflow_dispatch:
jobs:
update_readme:
steps:

Check failure on line 9 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: 9, Col: 5): Required property is missing: runs-on
- 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