How to Contribute Airflow Code
If we are on version v2.4, the Airflow branch name will follow this format: cld-v2.4.
Steps to Contribute
- Create a new branch off
cld-v2.4, naming itcld-v2.4-XXXXX(replaceXXXXXwith a short description of your edit) or using jira-ticket convention is fine too. - Make your changes and push them.
- Submit a PR merging
cld-v2.4-XXXXXintocld-v2.4. - Title of PR should start with
[CLD-v2.4]
e.g.
git fetch origin
git checkout cld-v2.4
git checkout -b cld-v2.4-XXXXX
# Make changes, then commit and push
git add .
git commit -m "Short description of changes"
git push origin cld-v2.4-XXXXX