A python script to get mail from issues@example.com and create github issues.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 538B

6 years ago
6 years ago
12345678910111213141516171819202122232425262728
  1. # Mail to Github Issues
  2. ## Description
  3. A script to get mail from issues@example.com and create github issues.
  4. ## Installation Instuctions
  5. * Install the github python API:
  6. ```
  7. pip install github3.py
  8. ```
  9. * Place the script under */usr/local/sbin/mail2github_issues.py*.
  10. * Adjust the following variables accordingly:
  11. * TOKEN = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
  12. * USER = 'exampledev'
  13. * REPO = 'myrepo'
  14. * Edit */etc/aliases*:
  15. ```
  16. issues: "|/usr/local/sbin/mail2github_issues.py"
  17. ```
  18. * Run the `newaliases` command.