Skip to content

Commit

Permalink
creating a script to schedule a greasejob
Browse files Browse the repository at this point in the history
  • Loading branch information
zachseifts committed Apr 9, 2020
1 parent b4cdb6f commit 1a65640
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions bin/greasejob.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/env python

import argparse

from jeep.maintenance import GreaseJob

if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Schedules a grease job.')
parser.add_argument('account_token', type=str, help='A github account token.')
args = parser.parse_args()

# Schedule the job.
g = GreaseJob(account_token=args.account_token)
g.run()

0 comments on commit 1a65640

Please sign in to comment.