Update snippet #1082
Workflow file for this run
This file contains hidden or 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: MarkdownSnippets | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| tags-ignore: | |
| - '*.*' | |
| jobs: | |
| documentation: | |
| name: Process documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| - name: Run MarkdownSnippets | |
| run: | | |
| dotnet tool install --global MarkdownSnippets.Tool | |
| mdsnippets ${GITHUB_WORKSPACE} -c InPlaceOverwrite | |
| git add . | |
| shell: bash | |
| - name: Fix links | |
| run: find ${GITHUB_WORKSPACE} -name "*.md" -not -name "*.source.md" -type f -exec sed -i '6,$s/\.source\.md/\.md/g' {} \; | |
| shell: bash | |
| - name: Push changes | |
| run: | | |
| git config --local user.email "[email protected]" | |
| git config --local user.name "GitHub Action" | |
| git add . | |
| git diff-index --quiet HEAD || git commit -m "docs: update markdown snippets [skip ci]" && git push |