Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/boring-cyborg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,24 @@ labelPRBasedOnFilePath:
- .rat-excludes
- .readthedocs.yml

# This should be copy of the "area:dev-tools" above and should be updated when we switch maintenance branch
backport-to-v3-0-test:
- scripts/**/*
- dev/**/*
- .github/**/*
- Dockerfile.ci
- CONTRIBUTING.rst
- contributing-docs/**/*
- yamllint-config.yml
- .asf.yaml
- .bash_completion
- .dockerignore
- .hadolint.yaml
- .pre-commit-config.yaml
- .rat-excludes
- .readthedocs.yml


kind:documentation:
- airflow-core/docs/**/*
- chart/docs/**/*
Expand Down
6 changes: 0 additions & 6 deletions dev/README_RELEASE_AIRFLOW.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,12 +293,6 @@ export AIRFLOW_REPO_ROOT=$(pwd)
uv tool install -e ./dev/breeze
```

or (if you prefer to use pipx):

```shell script
pipx install -e ./dev/breeze
```

- For major/minor version release, run the following commands to create the 'test' and 'stable' branches.

```shell script
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,12 @@ def instruction_update_version_branch(version_branch):
required_approving_review_count: 1
"""
)
console_print()
console_print(
"Update name of `backport` label to "
f"backport-to-v{version_branch}-test in .github/boring-cyborg.yml"
)
console_print()
console_print("Once you finish with the above. Commit the changes and make a PR against main")
confirm_action("I'm done with the changes. Continue?", abort=True)

Expand Down