Skip to content

CI: test automatic README.md updating #4

CI: test automatic README.md updating

CI: test automatic README.md updating #4

Workflow file for this run

name: "Update README daily"
on:
push:
# schedule:
# - cron: "33 3 * * *"
# workflow_dispatch:
jobs:
update_readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install prereqs
run: pip install -U yq
- name: Get changed files
shell: bash
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