-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcommit_bot.py
63 lines (54 loc) · 1.89 KB
/
commit_bot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Created by Ricky (https://github.com/RickyBhatti/)
# This script is licensed under the GNU General Public License v3.0.
# Check the GitHub repository for more information. (https://github.com/RickyBhatti/Commit-Bot)
### Configuration
# Logging Options
LOG = True
LOG_FILE = "commit_bot.log"
# Commit Options
NO_COMMIT_CHANCE = 0.1 # 10% chance of NOT committing to GitHub.
MAX_COMMITS = 8 # Maximum number of commits that can be made.
# Cron job.
CRON_JOB_TIME = "0 12 * * *" # Every day at 12:00 pm.
# Output File
OUTPUT_FILE = "commit_bot.txt"
# Imports
from sys import argv
from pathlib import Path
from os import system # Executing the Git commands.
from random import random, randint # Generating a random float between 0 and 1.
from datetime import datetime # Date and time for our file.
# Check if a cronjob exists for this script, if not, create it using crontab.
system("crontab -l > cron.txt")
with open("cron.txt", "r") as f:
if "commit_bot.py" not in f.read():
with open("cron.txt", "a") as f:
f.write(f"{CRON_JOB_TIME} cd {Path.cwd()} && python3 commit_bot.py\n")
f.close()
system("crontab cron.txt")
system("rm -f cron.txt")
else:
f.close()
system("rm -f cron.txt")
# Logging.
def log(message):
if LOG:
with open(LOG_FILE, "a") as f:
f.write(f"{message}\n")
f.close()
# Create our commit.
def create_commit():
with open(OUTPUT_FILE, "w") as f:
f.write(str(datetime.now()))
f.close()
system(f"git add {OUTPUT_FILE}")
system(f"git commit -m \"Update {OUTPUT_FILE}\"")
# Execute the script.
if (random() > NO_COMMIT_CHANCE):
commits = randint(0, MAX_COMMITS)
for i in range(commits):
create_commit()
system("git push")
log(f"[{datetime.now()}] Sucessfully committed {commits} time(s).")
else:
log(f"[{datetime.now()}] No commits were made.")