Skip to content

Continuous Search not working with YAML file #720

Continuous Search not working with YAML file

Continuous Search not working with YAML file #720

Workflow file for this run

name: Labeler
on:
issues:
types: [opened]
jobs:
apply-triage-label:
if: github.event_name == 'issues'
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: ['triage']
})