1 parent a858c07 commit ff874f4Copy full SHA for ff874f4
1 file changed
main.py
@@ -35,6 +35,8 @@ def display_user_event(data):
35
print(f"Followed the repo/organization {activity['repo']['url']}")
36
if activity['type'] == 'PushEvent':
37
print(f'Pushed to {activity['repo']['url']}')
38
+ if activity['type'] == 'CreateEvent':
39
+ print(f"Created {activity['repo']['name']}")
40
41
if __name__ == '__main__':
42
print(f"Script version {version}")
0 commit comments