Skip to content

Commit

Permalink
Extract all GH issue for ingestion (#182)
Browse files Browse the repository at this point in the history
closes: #113
  • Loading branch information
pankajastro authored Dec 13, 2023
1 parent bfb157c commit e96dcd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/include/tasks/extract/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def extract_github_issues(repo_base: str, github_conn_id: str) -> pd.DataFrame:
gh_hook = GithubHook(github_conn_id)

repo = gh_hook.client.get_repo(repo_base)
issues = repo.get_issues()
issues = repo.get_issues(state="all")

issue_autoresponse_text = "Thanks for opening your first issue here!"
pr_autoresponse_text = "Congratulations on your first Pull Request and welcome to the Apache Airflow community!"
Expand Down

0 comments on commit e96dcd1

Please sign in to comment.