Skip to content

Workflow with roam-code to saving token #162

Workflow with roam-code to saving token

Workflow with roam-code to saving token #162

name: Auto-label new issues
on:
issues:
types: [opened]
jobs:
add-triage-label:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/github-script@v7
with:
script: |
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
labels: ["needs-triage"]
})