Automatically update a GitHub repository with a list of contributors.
This is especially useful for maintaining a humans.txt file on a GitHub Pages site.
Note: private repositories are not currently supported, but will be soon.
The following software must be installed on your system:
You also need to associate your server's SSH key with your GitHub account so commits can automatically be pushed.
git clone https://github.com/alyssais/humans
cd humans
./configure
make install
You can also specify how often to check for contributors when running make install
(defaults to hourly):
make install SCHEDULE="0 * * * *"
SCHEDULE
can be set to any valid CRON expression.
- Fork this repository
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a pull request