Skip to content

good first issue: Data Curator — manually add 5 specific active scholarships to the sheet #13

good first issue: Data Curator — manually add 5 specific active scholarships to the sheet

good first issue: Data Curator — manually add 5 specific active scholarships to the sheet #13

Workflow file for this run

name: Auto Label Issues
on:
issues:
types: [opened]
permissions:
issues: write # required — GITHUB_TOKEN defaults to read-only
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
labels: ['triage']
})