Skip to content

add mattn relays

add mattn relays #85

Workflow file for this run

name: Generate
on:
pull_request:
permissions:
contents: write
jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.head_ref }}
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Generate README.md
run: |
python toml2md.py
- name: Commit and push
run: |
git config --local user.name 'github-actions[bot]'
git config --local user.email 'github-actions[bot]@users.noreply.github.com'
git add -f README.md README-ja.md
git commit -m 'generate README.md'
git push