Skip to content

Commit 45f3015

Browse files
authored
Final solution for Blazor issue processing (#34020)
1 parent 88539d0 commit 45f3015

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/blazor-hybrid-issue-processing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- opened
66
jobs:
77
process-blazor-issue:
8-
if: contains(github.event.issue.body, 'aspnet/core/blazor/hybrid')
8+
if: contains(github.event.issue.body, 'https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/blazor/hybrid')
99
runs-on: ubuntu-latest
1010
permissions:
1111
issues: write

.github/workflows/blazor-issue-processing.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
- opened
66
jobs:
77
process-blazor-issue:
8-
if: (contains(github.event.issue.body, 'Content source URL\r\n\r\nhttps://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/blazor')
9-
&& !contains(github.event.issue.body, 'aspnet/core/blazor/hybrid'))
10-
|| contains(github.event.issue.body, 'client-side/dotnet-interop/index.md')
11-
|| contains(github.event.issue.body, 'client-side/dotnet-interop/wasm-browser-app.md')
12-
|| contains(github.event.issue.body, 'mvc/views/tag-helpers/built-in/component-tag-helper.md')
13-
|| contains(github.event.issue.body, 'mvc/views/tag-helpers/built-in/persist-component-state.md')
8+
if: (contains(github.event.issue.body, 'https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/blazor')
9+
&& !contains(github.event.issue.body, 'https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/blazor/hybrid'))
10+
|| contains(github.event.issue.body, 'https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/client-side/dotnet-interop/index.md')
11+
|| contains(github.event.issue.body, 'https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/client-side/dotnet-interop/wasm-browser-app.md')
12+
|| contains(github.event.issue.body, 'https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/mvc/views/tag-helpers/built-in/component-tag-helper.md')
13+
|| contains(github.event.issue.body, 'https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/mvc/views/tag-helpers/built-in/persist-component-state.md')
1414
runs-on: ubuntu-latest
1515
permissions:
1616
issues: write

0 commit comments

Comments
 (0)