Skip to content

- r Bump mypy from 1.14.0 to 1.14.1 #885

- r Bump mypy from 1.14.0 to 1.14.1

- r Bump mypy from 1.14.0 to 1.14.1 #885

name: on-push-do-update-markdown
on:
push:
jobs:
release:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Run MarkdownSnippets
run: |
dotnet tool install --global MarkdownSnippets.Tool
mdsnippets ${GITHUB_WORKSPACE}
shell: bash
- name: Push changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -am "a - update markdown with mdsnippets" || echo "nothing to commit"
remote="https://${GITHUB_ACTOR}:${{secrets.GITHUB_TOKEN}}@github.com/${GITHUB_REPOSITORY}.git"
branch="${GITHUB_REF:11}"
git push "${remote}" ${branch} || echo "nothing to push"
shell: bash