This repository was archived by the owner on Jun 13, 2026. It is now read-only.
Bot smoke test 2026-06-01 #25
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Open Design Contributor Bot | |
| on: | |
| pull_request: | |
| types: [closed] | |
| issues: | |
| types: [opened] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: contributor-bot | |
| cancel-in-progress: false | |
| jobs: | |
| recognize: | |
| if: | | |
| (github.event_name == 'pull_request' && github.event.pull_request.merged == true) || | |
| (github.event_name == 'issues' && github.event.action == 'opened') | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout bot code | |
| uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run contributor bot | |
| env: | |
| BOT_APP_ID: ${{ secrets.BOT_APP_ID }} | |
| BOT_APP_INSTALLATION_ID: ${{ secrets.BOT_APP_INSTALLATION_ID }} | |
| BOT_APP_PRIVATE_KEY: ${{ secrets.BOT_APP_PRIVATE_KEY }} | |
| SCORE_REPO_OWNER: nexu-io | |
| SCORE_REPO_NAME: open-design | |
| run: pnpm exec tsx scripts/action-handler.ts |