Questions tagged [github-app]

104 questions
2
votes
0 answers

How to allow users to @ mention your github app

I have a github app and I'd like for users to give it commands by commenting on PRs. Since users comment on PRs for many reasons I'd like to start my command with an @ mention to my github app. This is a pattern dependabot uses with commands…
Saumil Patel
  • 67
  • 1
  • 5
2
votes
0 answers

How to clone github repos from jenkins using github app installation

How can I clone repos from jenkins using the GiHhub app?
Kam
  • 21
  • 2
2
votes
0 answers

How do I fix Jenkins github app credentials issue?

I had multiple Jenkins jobs running happily for some time using github app for authentication but today they all stopped working. I can go to each job and when I select 'validate', the github app credentials are validated fine. I created a dummy job…
Sergei
  • 387
  • 1
  • 6
  • 16
2
votes
0 answers

GitHub Apps (not OAuth) - multiple callback URLs not using redirect_uri

I've created a new "GitHub App" (not "OAuth App") and added two Callback URL settings: http://localhost/github https://myapp.com/github To install the app, I redirect the user to the following page: https://github.com/apps/
Alexander Doroshenko
  • 1,715
  • 1
  • 17
  • 24
2
votes
0 answers

How to make a GitHub App ask for permissions per installation?

I have written a GitHub app that requests permissions for all repository contents. The app basically reads a spec file that I created in order to do some custom logic. The spec file can be located in any folder that the installer wants and therefore…
Daniel Sinai
  • 136
  • 7
2
votes
1 answer

Cannot create an app that listens the webhook "pull_request_review_thread"

I am trying to create a simple app that will output the payload after the webhook "pull_request_review_thread" is triggered with any action. Here is the link to the related webhook: Pull_request_review_thread Github Docs However, this…
2
votes
0 answers

Prevent GitHub app to be installed on personnal GitHub accounts

I'm the owner of a GitHub app. I would like this app to only be installed on Organization account and not on personnal GitHub accounts. The reason is that our app doesn't make sense and doesn't work for personnal accounts. Is there any GitHub…
Sydney C.
  • 950
  • 10
  • 21
2
votes
1 answer

Terraform Github provider gets a 403 error on /user (using Github app auth)

I'm trying to setup team sync between Github and my id provider (Okta) using Terraform (v1.1.4). I've installed the Github provider as detailed in here. I did create a Github App and installed on my org, the permissions I've tried: Read access to…
Jason Oviedo
  • 459
  • 1
  • 5
  • 16
2
votes
1 answer

How to fix "Fetch to Code Inspector failed" in GitHub?

Uninstalled Code-Inspector(CI) Code Analysis app from my github account, but it still keep pushing danger alert notification error everytime the page is refreshed or some tab is clicked. I have installed and Uninstalled this app from Github…
Faizy
  • 120
  • 4
  • 14
2
votes
1 answer

Google Cloud Build failed to retrieve Github repositories

I am trying to set up a cloud build trigger from a public github repository with the Cloud Build GitHub App. I installed the app on my repository and authorized it but when I was redirected to GCP to connect the repository to a project this error…
dses
  • 85
  • 1
  • 5
2
votes
1 answer

Create a github app programmatically without user interaction?

Like the title mentions, I have checked the following resources : https://developer.github.com/v3/apps/#create-a-github-app-from-a-manifest https://developer.github.com/apps/building-github-apps/creating-github-apps-from-a-manifest/ And it seems…
Omar_0x80
  • 783
  • 1
  • 9
  • 16
2
votes
0 answers

Validate title and body of GitHub Pull Request

Is there way to validate the title and body of a GitHub Pull Request. I know that we can use Pull Request Template to prepopulate the pull Request message. Also GitHub does provide WebHooks , Checks API which run against each commit. But I'm looking…
Asif Kamran Malick
  • 2,409
  • 3
  • 25
  • 47
2
votes
0 answers

How do you get notifications from an upstream repository via a github app?

I'm working on a GitHub app to allow me to keep my forks of public repositories in sync with the upstream. If I create my GitHub app and install it in my personal organisation, I can get webhook events delivered about any commits/branches is my…
agentgonzo
  • 3,473
  • 3
  • 25
  • 30
2
votes
0 answers

"Page build failed" after auto merging pull request to GitHub-Pages master branch

The comments system on my Github Pages blog (https://github.com/artandsuffering/artandsuffering.github.io) creates each comment on a new branch and then creates a pull request to merge the branch to master. If I commit the request myself, the page…
Jacques
  • 21
  • 3
1
vote
1 answer

How can you authenticate to the GitHub Container Registry using a GitHub App?

According to the GitHub docs, you can only authenticate to the GitHub Container Registry via a personal access token or via the GITHUB_TOKEN (only available in GitHub actions). The GITHUB_TOKEN is an installation access token of a GitHub App. When…