-
Notifications
You must be signed in to change notification settings - Fork 652
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#4017 - use MarkdownSnippets tool to embed
.yml
files as code snipp…
…et in markdown
- Loading branch information
Showing
3 changed files
with
613 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Markdown Update | ||
on: | ||
push: | ||
|
||
env: | ||
DOTNET_ROLL_FORWARD: "Major" | ||
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | ||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | ||
DOTNET_NOLOGO: 1 | ||
|
||
defaults: | ||
run: | ||
shell: pwsh | ||
|
||
jobs: | ||
docs: | ||
name: Update Markdown (embedded snippets) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v4 | ||
- | ||
name: Run MarkdownSnippets | ||
run: | | ||
dotnet tool install --global MarkdownSnippets.Tool | ||
mdsnippets --write-header false | ||
working-directory: ${{ github.workspace }}/docs/input | ||
- | ||
name: Check for changes | ||
id: status | ||
run: | | ||
if ($null -ne (git status --porcelain)) { echo "has_changes=1"; echo "has_changes=1" >> $env:GITHUB_OUTPUT } | ||
- | ||
name: Push changes | ||
run: | | ||
git add --verbose . | ||
git config user.name 'Artur Stolear' | ||
git config user.email 'artur.stolear@gmail.com' | ||
git commit -m 'Docs changes' --allow-empty | ||
git push --force | ||
if: steps.status.outputs.has_changes == '1' |
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
Oops, something went wrong.