probot icon indicating copy to clipboard operation
probot copied to clipboard

🤖 A framework for building GitHub Apps to automate and improve your workflow

Results 125 probot issues
Sort by recently updated
recently updated
newest added

## Bug Report It looks like in v8 of @octokit/requests, they switched from using Node's HTTP api, to using `fetch`. The latest published `nock` does not have support for `fetch`,...

## Bug Report Testing my probot app seems to have gotten significantly slower in probot v13. I noticed when upgrading from probot v12 to v13, that my unit tests were...

## Bug Report **Current Behavior** I want to standardize all my outputs to be JSON so that log processors like fluentbit will be able to consume them and format them...

## Feature Request **Is your feature request related to a problem? Please describe.** I'd like to manually set the Response Body and Status Code e.g. ```ts app.on("workflow_job.queued", async (context) =>...

feature

## Feature Request Probot feature for failure alert notification similar to dependabot **Is your feature request related to a problem? Please describe.** A clear and concise description of what the...

support

## Bug Report **Current Behavior** I created a new app using the basic-ts template and executed `npm start`. Then, when I go to http://localhost:3000 and try to register a new...

## Bug Report **Current Behavior** The current glitch examples is failing because of an outdated API ref ```js // Current code return context.github.issues.createComment(params) // Needs to be updated to return...

## Bug Report **Current Behavior** A clear and concise description of the behavior. ```js app.on("projects_v2_item.created", async (context) => { app.log.info(context); }); app.on("projects_v2_item.edited", async (context) => { app.log.info(context); }); ``` **Expected...

## Feature Request **Is your feature request related to a problem? Please describe.** The context/event ("event:") is so large that the logging functionality eg. in Vercel doesn't show the actual...

## Bug Report **Current Behavior** Here is my code: ```js async function isLabelPresent(context, label) { const issue_number = context.payload.issue.number const owner = context.payload.repository.owner.login const repo = context.payload.repository.name console.log(`isLabelPresent : ${owner}/${repo}#${issue_number}...