Skip to main content
Version: Canary - 2.3 🚧

How to Contribute Airflow Code

If we are on version v2.3, the Airflow branch name will follow this format: cld-v2.3.

Steps to Contribute

  1. Create a new branch off cld-v2.3, naming it cld-v2.3-XXXXX (replace XXXXX with a short description of your edit) or using jira-ticket convention is fine too.
  2. Make your changes and push them.
  3. Submit a PR merging cld-v2.3-XXXXX into cld-v2.3.
  4. Title of PR should start with [CLD-v2.3]

e.g.

git fetch origin
git checkout cld-v2.3
git checkout -b cld-v2.3-XXXXX

# Make changes, then commit and push
git add .
git commit -m "Short description of changes"
git push origin cld-v2.3-XXXXX