Skip to content

fix: bad sentence

fix: bad sentence #7

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
jobs:
build:
name: doc
runs-on: ubuntu-latest
# if: ${{ github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.BOT_ACCESS_TOKEN }}
- name: Update readme
run: |
make readme
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "ci: Update readme"
branch: ${{ github.head_ref }}
commit_user_name: github-actions[bot]
commit_user_email: github-actions[bot]@users.noreply.github.com
commit_author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
# tests:
# name: tests
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# with:
# token: ${{ secrets.BOT_ACCESS_TOKEN }}
# - name: Run tests
# run: |
# make tests