Skip to content

Update readme

Update readme #86

Workflow file for this run

name: Update readme
on:
push:
branches: "main"
paths:
- .github/workflows/update-readme.yml
pull_request:
paths:
- .github/workflows/update-readme.yml
schedule:
# https://crontab.guru/#27_0_*_*_*
- cron: "27 0 * * *"
workflow_call:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
update-readme:
concurrency: ${{ github.ref }}-write
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: devcontainers-community/update-collection-readme@v1
- uses: stefanzweifel/git-auto-commit-action@v4