Questions tagged [github-webhook]

Use for the webhook settings in github

Webhooks allow triggers to be set off by github, or for github to respond to.

Learn more here.

98 questions
2
votes
0 answers

Github Webhook to AWS API Gateway integrated with SQS Bug?

I have this mostly working. All events sent by Github end up on my SQS Queue. The webhook is sending application/json with "Send me everthing" at the org-level. I'm using the following template mapping in my API…
Marc Swingler
  • 181
  • 10
2
votes
1 answer

How do you pass environment variables from the Source to the Build in AWS CodePipelines?

In AWS CodeBuild, it's incredibly easy to pass environment variables, as shown in the documentation. If I want to get the event trigger reference, I can use the variable CODEBUILD_WEBHOOK_TRIGGER, which is context-sensitive: for a GitHub PUSH event,…
2
votes
0 answers

How to configure GitHub webhook URL in Red Hat OpenShift?

I am not getting the GitHub webhook URL after creating a new project on OpenShift. I have checked the build configuration as well, but it wasn't there.
2
votes
0 answers

How to build jenkins pipelines only on github releases

I have a repository that I can create a release for. I have jenkins setup and since the jenkins is hosted inside a firewall that restricts any communication from outside the network, github-webhook doesnt work. Also getting the reverse proxy to work…
Venkatavaradhan
  • 139
  • 4
  • 13
2
votes
0 answers

GitHub API Quota with Jenkins and Webhooks

Wondering if there are any suggestions to work around the API quota of 5000 from GitHub, particularly around Jenkins usage. For context, we have ~300 repos and ~100 GitHub users. We initially had most jobs do org/repo scans, and as we started to get…
cdm
  • 719
  • 2
  • 10
  • 22
2
votes
1 answer

how to build only the PR from github in jenkins

I have jenkins setup using the 'Github Pull Request Builder' and for the most part its great. However extra builds are being triggered referencing closed PR's. For example if create PR 8, it will also build: origin/pr/7/head origin/pr/8/merge How…
user1584120
  • 1,169
  • 2
  • 23
  • 44
1
vote
0 answers

Automatic Triggering of GitHub repo pushes in Jenkins build

I am trying to create a GitHub webhook to connect a GitHub repo and Jenkins(docker container) server -- for triggering Jenkins build automatically when there are repo pushes, I am using ngrok to expose the Jenkins address/repo to get a payload URL…
1
vote
0 answers

How to trigger a github webhook from Dropbox

Dropbox gives the possiiblity to create a webhook here that is sent when a file is added to a folder. Reading the doc it seems that you can't configure much the information that are sent and there is also a verification procedure the client should…
Ruggero Turra
  • 16,929
  • 16
  • 85
  • 141
1
vote
0 answers

Is it possible to get the invitation_id from a Github Webhook event when a user accepts an invitation?

If I send a collaboration invitation for a private Github repository via eMail, I would like to know for which Github-Profile the invitation ends up being used. Currently, an invitation sent via eMail can be used by the owner of the eMail account…
Tridelt
  • 13
  • 6
1
vote
1 answer

GitHub Action assign an environment variable using a workflow_dispatch variable or job output

I have a GitHub Action workflow that can be triggered in two ways, via a pull_request and via a workflow dispatch. During a pull_request, one of the steps generates an output that will be used in a later step. During a workflow dispatch, the user…
1
vote
2 answers

Function cannot be initialized on Google Cloud Functions

I am deploying a simple function on Google Cloud Functions but I am getting a Function cannot be initialized. Error: function terminated. Recommended action: inspect logs for termination reason. error. This is my…
1
vote
1 answer

Getting function.js does not exist error when deploying 1st gen cloud function

I am writing a simple helloWorld function in a node.js(v16) app that I want to deploy using the 1st gen Google Cloud Functions (I want to eventually use GitHub Webhooks to deploy code). I keep getting this error: Build failed: function.js does not…
1
vote
1 answer

How to change the associated GitHub repository after publishing a module to deno.land/x/?

I decided to migrate to a new github repo (not just changing the repo name) for a published deno module but cannot find a way to do it. The manual says: Module versions are persistent and immutable. It is thus not possible to edit or delete a…
btwiuse
  • 2,585
  • 1
  • 23
  • 31
1
vote
1 answer

Validate Github Webhook HMAC Signature Lucee Coldfusion and CFWheels

I am trying to verify the signature of my webhooks from github. Following their documentation, there is only an example for ruby: post '/payload' do request.body.rewind payload_body = request.body.read verify_signature(payload_body) push =…
1
vote
1 answer

Jenkins - Disabled User exception

We have a git repo from which on every PR, a Jenkins job is triggered which does some validations on the code changes. The job has been in place for a long time and was working fine until yesterday after which it starts failing with an exception…