Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 1 KB

index.md

File metadata and controls

34 lines (22 loc) · 1 KB

Updating a recipe

This recipe will guide you through the process of updating an existing recipe in the cookbook.

Steps

  1. Check out the cookbook repository using the command line:

    git clone [email protected]:the-events-calendar/cookbook.git
  2. Create a new branch for your recipe update:

     git checkout -b update-my-recipe
  3. 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.

  4. 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
  5. Open a pull request on GitHub. Make sure to add a clear title and description for your pull request.

  6. Once your pull request is approved, merge it into the main branch.