Skip to content

Merge pull request #58 from Python-Fuzzylogic/dependabot/pip/docs/jin… #43

Merge pull request #58 from Python-Fuzzylogic/dependabot/pip/docs/jin…

Merge pull request #58 from Python-Fuzzylogic/dependabot/pip/docs/jin… #43

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