Skip to content

Instantly share code, notes, and snippets.

@gkrizek
Last active January 22, 2019 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gkrizek/8ff05e1dd3196d488a71510838fcac72 to your computer and use it in GitHub Desktop.
Save gkrizek/8ff05e1dd3196d488a71510838fcac72 to your computer and use it in GitHub Desktop.
Example Bitcoin Core IRC .ghi.yml file

Example Bitcoin Core IRC .ghi.yml file

version: 1
global:
  irc:
    host: chat.freenode.net
    nick: bitcoin-git
pools:
  - name: bitcoin
    github:
      repos:
        - name: bitcoin/bitcoin
          secret: <your_secret_here>
          branches:
            - master
            - 0.14
            - 0.15
            - 0.16
            - 0.17
    irc: 
      channels:
        - bitcoin-commits

If you prefer to export the GitHub secret as an environment variable rather than in the .ghi.yml file, use the variable name GHI_GITHUB_SECRET_BITCOIN_BITCOIN

If you need a password for the IRC user, either put the password under ['pools'][0]['irc']['password'] or use the environment variable GHI_IRC_PASSWORD_BITCOIN

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment