perf: Reduce size of initial request message when no custom factory i… #1072
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run MarkdownSnippets | |
on: | |
push: | |
jobs: | |
docs: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run MarkdownSnippets | |
run: | | |
dotnet tool install --global MarkdownSnippets.Tool | |
mdsnippets | |
working-directory: ${{ github.workspace }} | |
- name: Push changes | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
git commit -m "Re-generate mdsnippets" -a || 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 |