Skip to content

Commit a72dac2

Browse files
committed
Adds checkout action for pull requests
Adds a checkout action to the workflow to ensure the code is available for pull request events.
1 parent 33512d1 commit a72dac2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/mkdocs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ jobs:
2323
if: github.event_name == 'push'
2424
with:
2525
token: ${{ secrets.PUSH_GITHUB_TOKEN }}
26+
-
27+
name: Checkout
28+
uses: actions/checkout@v5
29+
if: github.event_name == 'pull_request'
2630
-
2731
name: Setup .NET SDK
2832
uses: actions/setup-dotnet@v5

0 commit comments

Comments
 (0)