Restructure TOC and address "integration" messaging #1952
Workflow file for this run
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
# This is a basic workflow to help you get started with Actions | |
name: Snippets 5000 | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events on the main branch only. | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, synchronize, reopened] | |
workflow_dispatch: | |
inputs: | |
reason: | |
description: "The reason for running the workflow" | |
required: true | |
default: "Manual run" | |
env: | |
DOTNET_VERSION: '8.0.100' # set this to the dot net version to use | |
EnableNuGetPackageRestore: "True" | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
permissions: | |
contents: read | |
jobs: | |
# This workflow contains a single job called "snippets-build" | |
snippets-build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
permissions: | |
statuses: write | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
# Get the latest preview SDK (or sdk not installed by the runner) | |
- name: Setup .NET | |
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # main | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
# Install workload | |
- name: Install .NET Aspire workload | |
run: | | |
dotnet workload install aspire | |
# Print dotnet info | |
- name: Display .NET info | |
run: | | |
dotnet --info | |
# Clone docs tools repo | |
- name: Clone docs-tools repository | |
run: | | |
git clone https://github.com/dotnet/docs-tools | |
# Run snippets 5000 | |
- name: Run snippets 5000 for PR | |
env: | |
GitHubKey: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
dotnet run --project docs-tools/snippets5000/Snippets5000/Snippets5000.csproj -- --sourcepath "${{ github.workspace }}" --pullrequest ${{ github.event.number }} --owner ${{ github.repository_owner }} --repo ${{ github.event.repository.name }} | |
# Update build output json file | |
- name: Upload build results | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 #@v4.4.0 | |
with: | |
name: build | |
path: ./output.json |