fix: fork-safe test reporting via artifact provider; gate releases on the unified report #663
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: Pull Request | ||
| on: | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| - "release/**" | ||
| paths: | ||
| - "src/**" | ||
| - "**/*.sln" | ||
| - "**/*.csproj" | ||
| - "**/*.props" | ||
| - "**/*.targets" | ||
| - "Directory.Packages.props" | ||
| - "Directory.Build.props" | ||
| - "global.json" | ||
| - "nuget.config" | ||
| - "GitVersion.yml" | ||
| - ".config/dotnet-tools.json" | ||
| - ".github/workflows/**" | ||
| - ".github/actions/**" | ||
| - "!**/*.md" | ||
| permissions: | ||
| contents: read | ||
| actions: read | ||
| jobs: | ||
| build-and-test: | ||
|
Check failure on line 29 in .github/workflows/pull-request.yml
|
||
| # Skip workflow when merging from release branch into main | ||
| if: | | ||
| !(github.base_ref == 'main' && startsWith(github.head_ref, 'release/')) | ||
| uses: ./.github/workflows/build-test.yml | ||
| with: | ||
| draft-check: true | ||