Skip to content

The article about hosting ASP.NET Core application on Linux systemd gives wrong example of service definition file #7543

The article about hosting ASP.NET Core application on Linux systemd gives wrong example of service definition file

The article about hosting ASP.NET Core application on Linux systemd gives wrong example of service definition file #7543

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