remove 2 labels, add /docs as ghpages
1 file changed
tree: fd7d5191fde3910f94b032ea69c697a57a00e626
  1. docs/
  2. .asf.yaml
  3. LICENSE
  4. occ.py
  5. occ.yaml.sample
  6. pipservice-occ.service
  7. README.md
  8. requirements.txt
README.md

infrastructure-occ

On-Commit Commands

Simple daemon that runs commands when a commit to a certain source has happened.

Sample occ.yaml config:

pubsub:
  url: https://pubsub.apache.org:2070/commit
  user: user
  pass: pass

subscriptions:
  git-change:
    topics: git/commit/some-git-repo-name
    oncommit: /x1/git/run-git-trigger.sh
    blamelist: notify@example.org
    blamesubject: Git trigger failure
  svn-change-in-dir:
    topics: svn/commit/somedir
    changedir: some/subdir
    oncommit: /x1/git/run-svn-trigger.sh
    blamelist: notify@example.org
    blamesubject: Subversion trigger failure