:electric_plug: @probot/adapter-github-actions 可以在运行应用程序功能的适配器 用法 一如既往地创建您的Probot应用程序 // app.js module . exports = ( app ) => { app . on ( "issues.opened" , async ( context ) => { const params = context . issue ( { body : "Hello World!" } ) ; await context . octokit . issues . createComment ( params ) ; } ) ; } ; 然后在GitHub Action的入口点,要求使用@probot/adapter-github-actions而不是probot // index.js const {