Closed mpgreg closed 11 months ago
https://github.com/astronomer/ask-astro/blob/c45487c7f12a9424dbe885580c687e35e30b7de4/airflow/include/tasks/extract/github.py#L206
Default for get_issues() is to only capture 'open' issues. For ask-astro we want 'all'
get_issues()
Need to change to issues = repo.get_issues(state='all')
issues = repo.get_issues(state='all')
https://github.com/astronomer/ask-astro/blob/c45487c7f12a9424dbe885580c687e35e30b7de4/airflow/include/tasks/extract/github.py#L206
Default for
get_issues()
is to only capture 'open' issues. For ask-astro we want 'all'Need to change to
issues = repo.get_issues(state='all')