Skip to content

Merge branch 'master' of github.com:amogorkon/fuzzy #44

Merge branch 'master' of github.com:amogorkon/fuzzy

Merge branch 'master' of github.com:amogorkon/fuzzy #44

Workflow file for this run

name: Update docs/docs/index.md
on: push
permissions:
pull-requests: write
contents: write
repository-projects: write
jobs:
update-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update docs/docs/index.md
run: |
echo "Generating docs/docs/index.md..."
cat README.md > docs/docs/index.md
- name: Commit and push changes
run: |
git config --global user.name "coderatul"
git config --global user.email "[email protected]"
git add docs/docs/index.md
git commit -m "Update docs/docs/index.md"
git push