Skip to content

[Growth] Nexu seed user discovery plan v1.0 landed (Week 2 · 2026-04-22) #593

[Growth] Nexu seed user discovery plan v1.0 landed (Week 2 · 2026-04-22)

[Growth] Nexu seed user discovery plan v1.0 landed (Week 2 · 2026-04-22) #593

name: "nexu-pal: triage command"
on:
issue_comment:
types: [created]
permissions:
contents: read
issues: write
jobs:
handle-triage-command:
if: ${{ !github.event.issue.pull_request }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Create GitHub App token
id: app-token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ secrets.NEXU_PAL_APP_ID }}
private-key: ${{ secrets.NEXU_PAL_PRIVATE_KEY_PEM }}
- name: Handle triage command
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
ISSUE_NUMBER: ${{ github.event.issue.number }}
COMMENT_BODY: ${{ github.event.comment.body }}
COMMENT_AUTHOR: ${{ github.event.comment.user.login }}
run: node scripts/nexu-pal/process-triage-command.mjs