Follow these steps to add an event -
Fork the repository and then clone it locally -
git clone https://github.com/<username>/tennis-events
Make a markdown file under "_posts" directory with the following naming convention - <YYYY-MM-DD-Title.markdown> example - cd tennis-events touch _posts/2021-07-09-tennis-open-2021.markdown
Copy the contents of the file and fill the details using these variable.
Commit the changes to a new branch [name it by the name of your event]
git checkout -b <your-event-name>
git add <files>
git commit -m <message>
Push the code
git remote add origin git@github.com:<username>/tennis-events.git
git push origin
Create a Pull Request