Skip to content

Add to the Documentation on Importing Javascript modules that the script file is automatically downloaded when the Page is Rendered #8747

Add to the Documentation on Importing Javascript modules that the script file is automatically downloaded when the Page is Rendered

Add to the Documentation on Importing Javascript modules that the script file is automatically downloaded when the Page is Rendered #8747

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"]
})