CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sat, 09 Aug 2025 20:35:02 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100214042745
location: https://web.archive.org/web/20100214042745/https://github.com/schacon/github-services
server-timing: captures_list;dur=1.100991, exclusion.robots;dur=0.036499, exclusion.robots.policy;dur=0.016941, esindex;dur=0.019312, cdx.remote;dur=2583.227733, LoadShardBlock;dur=393.722178, PetaboxLoader3.resolve;dur=174.515866, PetaboxLoader3.datanode;dur=171.857107
x-app-server: wwwb-app225
x-ts: 302
x-tr: 3036
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app225; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sat, 09 Aug 2025 20:35:04 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Sun, 14 Feb 2010 04:27:45 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "04ee74a66c23e24d196a881e22b3b74b"
x-archive-orig-x-runtime: 166ms
x-archive-orig-content-length: 26699
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 14 Feb 2010 04:27:45 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 14 Feb 2010 04:27:45 GMT", ; rel="memento"; datetime="Sun, 14 Feb 2010 04:27:45 GMT", ; rel="next memento"; datetime="Sun, 23 May 2010 10:14:18 GMT", ; rel="last memento"; datetime="Tue, 03 Nov 2020 17:09:46 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: TLA-20100214022751-00743-ia360903-c/TLA-20100214041614-00796-ia360906.us.archive.org.warc.gz
server-timing: captures_list;dur=0.521684, exclusion.robots;dur=0.019070, exclusion.robots.policy;dur=0.008954, esindex;dur=0.009397, cdx.remote;dur=505.851816, LoadShardBlock;dur=163.696313, PetaboxLoader3.datanode;dur=98.587682, PetaboxLoader3.resolve;dur=164.768793, load_resource;dur=166.442195
x-app-server: wwwb-app225
x-ts: 200
x-tr: 890
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
schacon's github-services at master - GitHub
This service is courtesy of Pledgie.
schacon / github-services forked from pjhyett/github-services
- Source
- Commits
- Network (74)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
-
Branches (1)
- master ✓
- Tags (0)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
Official GitHub Services Integration — Read more
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Wed Jul 09 22:18:36 -0700 2008 | Improving email format. This includes a second... [eric] |
![]() |
CONTRIBUTORS | Fri Sep 19 16:49:52 -0700 2008 | thank ya [pjhyett] |
![]() |
LICENSE | Mon Jul 14 01:30:49 -0700 2008 | add LICENSE [pjhyett] |
![]() |
README.mkdn | Thu Jul 10 17:46:13 -0700 2008 | break out contributors into a separate file [pjhyett] |
![]() |
Rakefile | Tue May 06 02:08:47 -0700 2008 | Added Rakefile with a RSpec task to make runnin... [lukeredpath] |
![]() |
docs/ | Thu Oct 09 10:48:17 -0700 2008 | wording clarification for what the subdomain is... [schacon] |
![]() |
github-services.rb | Fri Sep 12 18:19:27 -0700 2008 | appears to be breaking some of the services, tu... [pjhyett] |
![]() |
services/ | Fri Sep 19 09:08:37 -0700 2008 | prettified the basecamp commit message again. ... [mattpolito] |
![]() |
spec/ | Tue May 06 02:08:47 -0700 2008 | Added Rakefile with a RSpec task to make runnin... [lukeredpath] |
![]() |
vendor/ | Tue Aug 19 22:33:13 -0700 2008 | basecamp help [pjhyett] |
README.mkdn
GitHub Services
How the services work
- A post-receive background job is submitted when someone pushes their commits to GitHub
- If the repository the commits belong to has any "Service Hooks" setup, the job makes a request to
https://services-server/service_name/
with the following data:params[:payload]
containing all of the commit data (the same data you get using the API)params[:data]
containing the service data (username, password, room, etc)
- Sinatra (github-services.rb) processes the request (twitters your data, says something in campfire, posts it to lighthouse, etc)
- Rinse and repeat
Steps to contributing
- Fork the project
Create a new file in /services/ called
service_name.rb
, using the following template:service :service_name do |data, payload| end
Vendor any external gems your code relies on, and make sure to include it in the requires at the top of github-services.rb
- Add documentation to
docs/service_name
(refer to the others for guidance) - Send us a pull request
- Once it's accepted, we'll add any new necessary data fields to the GitHub front-end so people can start using your addition.
Patches including tests are encouraged
Bugs can be filed here: Lighthouse