Skip to content

[RFC] Server-Side Batch Inference for ML Commons #1161

[RFC] Server-Side Batch Inference for ML Commons

[RFC] Server-Side Batch Inference for ML Commons #1161

Workflow file for this run

name: Apply 'untriaged' label during issue lifecycle
on:
issues:
types: [opened, reopened, transferred]
permissions:
issues: write
jobs:
apply-label:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['untriaged']
})