Skip to content

Update README.org

Update README.org #11

Workflow file for this run

name: Update tables
on:
push:
paths:
- '**.org'
permissions:
contents: write
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Install emacs
run: sudo apt-get install --assume-yes --no-install-recommends emacs
- uses: actions/checkout@v3
- name: Update tables
run: ./update.sh
- name: Commit report
run: |
git config --global user.name 'Updater Bot'
git config --global user.email 'bot@metacode.biz'
if git commit -am "Update tables"; then
git push
fi