https://github.com/a0s/jenkins-control-by-pull-requests
Starts jenkins job on Github's pull request changes
https://github.com/a0s/jenkins-control-by-pull-requests
Last synced: 2 months ago
JSON representation
Starts jenkins job on Github's pull request changes
- Host: GitHub
- URL: https://github.com/a0s/jenkins-control-by-pull-requests
- Owner: a0s
- Created: 2017-12-12T23:19:52.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-15T10:07:45.000Z (about 7 years ago)
- Last Synced: 2025-01-06T02:12:11.795Z (over 1 year ago)
- Language: Ruby
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Create a new webhook on Github with parameters:
- Payload URL
`http://YOUR_EXTERNAL_IP:9999/github-webhook`
- Content type
`application/json`
- Secret
`YOUR_SECRET_KEY`
- Which events would you like to trigger this webhook?
Enable `Pull request`
Then starts the server:
```bash
bundle install
GITHUB_HOOK_SECRET="YOUR_SECRET_KEY" rackup --host YOUR_EXTERNAL_IP --port 9999
```