-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsimulate_pr_activity.py
More file actions
70 lines (50 loc) · 1.51 KB
/
simulate_pr_activity.py
File metadata and controls
70 lines (50 loc) · 1.51 KB
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
64
65
66
67
68
69
70
import random
import subprocess
import time
REPO_PATH = "D:/final year/PTest/first"
employees = [f"emp_{i}" for i in range(1,11)]
managers = {
"manager_1": employees[:5],
"manager_2": employees[5:]
}
titles = [
"Fix bug",
"Improve logging",
"Refactor service",
"Add validation",
"Optimize query"
]
def run(cmd):
subprocess.run(cmd, cwd=REPO_PATH)
for day in range(1,11):
print(f"DAY {day}")
for manager in managers:
for emp in managers[manager]:
prs_today = random.randint(2,3)
for pr in range(prs_today):
branch = f"{emp}_day{day}_{pr}"
run(["git","checkout","main"])
run(["git","pull"])
run(["git","checkout","-b",branch])
with open(f"{REPO_PATH}/worklog.txt","a") as f:
f.write(f"{emp} update day {day}\n")
run(["git","add","."])
run([
"git",
"commit",
f'--author={emp} <{emp}@company.com>',
"-m",
random.choice(titles)
])
run(["git","push","origin",branch])
subprocess.run([
"gh",
"pr",
"create",
"--title",
random.choice(titles),
"--body",
f"PR by {emp}"
], cwd=REPO_PATH)
time.sleep(1)
print("Simulation complete")