Skip to content

Add use command to setup configuration for the user #23

Add use command to setup configuration for the user

Add use command to setup configuration for the user #23

Workflow file for this run

name: Triage New Issues
on:
issues:
types: [opened]
jobs:
triage:
name: Triage New Issues
runs-on: ubuntu-20.04
steps:
- name: Add "needs/triage" label
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
labels: ['needs/triage']
})