There are some Breeze commands that are used to manage GitHub issues for the Apache Airflow project.
Those are all of the available issues commands:
The breeze issues unassign command finds open issues that have assignees who are not repository
collaborators, and removes those assignees. This is useful for maintainers to clean up stale assignments.
Example usage:
# Dry run to see which assignees would be removed
breeze issues unassign --dry-run
# Run with confirmation prompts per batch
breeze issues unassign
# Use a custom batch size
breeze issues unassign --batch-size 50Next step: Follow the Pull request tasks instructions to learn how to manage GitHub pull requests with Breeze.