Skip to content

Remove search calls to fetch max seq no for each shard in doc level monitor. Use first call to fetch data from a shard to determinte max seq no. #275

Remove search calls to fetch max seq no for each shard in doc level monitor. Use first call to fetch data from a shard to determinte max seq no.

Remove search calls to fetch max seq no for each shard in doc level monitor. Use first call to fetch data from a shard to determinte max seq no. #275

Workflow file for this run

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