# ant-bot **Repository Path**: mirrors_eggjs/ant-bot ## Basic Information - **Project Name**: ant-bot - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2026-03-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Ant bot ## Development ### start ``` $ yarn $ cp env .env $ vim .env $ yarn dev ``` ### a simplest action ```javascript // src/actions/hello.js const { commentIssue } = require('../github'); function hello(on) { on('issue_opend', ({ payload }) => { const user = payload.issue.user.login ; commentIssue( payload, `Hello @${user}`, ); }); } module.exports = hello; ```