Skip to content

Commit

Permalink
Final solution for Blazor issue processing (#34020)
Browse files Browse the repository at this point in the history
  • Loading branch information
guardrex authored Nov 5, 2024
1 parent 88539d0 commit 45f3015
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/blazor-hybrid-issue-processing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- opened
jobs:
process-blazor-issue:
if: contains(github.event.issue.body, 'aspnet/core/blazor/hybrid')
if: contains(github.event.issue.body, 'https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/blazor/hybrid')
runs-on: ubuntu-latest
permissions:
issues: write
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/blazor-issue-processing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
- opened
jobs:
process-blazor-issue:
if: (contains(github.event.issue.body, 'Content source URL\r\n\r\nhttps://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/blazor')
&& !contains(github.event.issue.body, 'aspnet/core/blazor/hybrid'))
|| contains(github.event.issue.body, 'client-side/dotnet-interop/index.md')
|| contains(github.event.issue.body, 'client-side/dotnet-interop/wasm-browser-app.md')
|| contains(github.event.issue.body, 'mvc/views/tag-helpers/built-in/component-tag-helper.md')
|| contains(github.event.issue.body, 'mvc/views/tag-helpers/built-in/persist-component-state.md')
if: (contains(github.event.issue.body, 'https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/blazor')
&& !contains(github.event.issue.body, 'https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/blazor/hybrid'))
|| contains(github.event.issue.body, 'https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/client-side/dotnet-interop/index.md')
|| contains(github.event.issue.body, 'https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/client-side/dotnet-interop/wasm-browser-app.md')
|| contains(github.event.issue.body, 'https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/mvc/views/tag-helpers/built-in/component-tag-helper.md')
|| contains(github.event.issue.body, 'https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/mvc/views/tag-helpers/built-in/persist-component-state.md')
runs-on: ubuntu-latest
permissions:
issues: write
Expand Down

0 comments on commit 45f3015

Please sign in to comment.