Skip to content

Add id field to actor object for consistency with Datasette actor for… #6

Add id field to actor object for consistency with Datasette actor for…

Add id field to actor object for consistency with Datasette actor for… #6

Workflow file for this run

name: Update README table of contents
on:
workflow_dispatch:
push:
branches:
- main
paths:
- README.md
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Update TOC
run: npx markdown-toc README.md -i
- name: Commit and push if README changed
run: |-
git diff
git config --global user.email "readme-bot@example.com"
git config --global user.name "README-bot"
git diff --quiet || (git add README.md && git commit -m "Updated README")
git push