This recipe will guide you through the process of updating an existing recipe in the cookbook.
-
Check out the cookbook repository using the command line:
git clone [email protected]:the-events-calendar/cookbook.git
-
Create a new branch for your recipe update:
git checkout -b update-my-recipe
-
Navigate to the directory containing the recipe you want to update and edit it following the recipe guidelines outlined in the Adding a recipe recipe.
-
When you're satisfied with your updates, commit your changes, and push your branch to the repository:
git add . git commit -m "Updating my recipe" git push origin update-my-recipe
-
Open a pull request on GitHub. Make sure to add a clear title and description for your pull request.
-
Once your pull request is approved, merge it into the
main
branch.