Skip to content

When targetting .Net8, it is necessary to use "8.x" versions of nugets, NOT "latest", which is now "9.x". #8121

When targetting .Net8, it is necessary to use "8.x" versions of nugets, NOT "latest", which is now "9.x".

When targetting .Net8, it is necessary to use "8.x" versions of nugets, NOT "latest", which is now "9.x". #8121

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