Skip to content

API Route の認証・バリデーションパターンの標準化を検討 #2

API Route の認証・バリデーションパターンの標準化を検討

API Route の認証・バリデーションパターンの標準化を検討 #2

Workflow file for this run

name: Add needs-triage label
on:
issues:
types: [opened]
permissions:
issues: write
jobs:
add-label:
if: ${{ !endsWith(github.event.issue.user.login, '[bot]') }}
runs-on: ubuntu-latest
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']
});