Skip to content

MapStaticAssets optimized for serving the assets that your app has knowledge of at build and publish time. #7829

MapStaticAssets optimized for serving the assets that your app has knowledge of at build and publish time.

MapStaticAssets optimized for serving the assets that your app has knowledge of at build and publish time. #7829

name: Issue processing
on:
issues:
types:
- labeled
jobs:
process-grpc-issue:
if: github.event.label.name == 'grpc/subsvc'
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/github-script@v6
with:
script: |
await github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["gRPC"]
})
process-signalr-issue:
if: github.event.label.name == 'aspnetcore-signalr/subsvc'
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/github-script@v6
with:
script: |
await github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["SignalR"]
})