From a6505d65dd792ec875532acece50dfcd94d5f15b Mon Sep 17 00:00:00 2001 From: Akshay-samsung Date: Fri, 14 Oct 2022 15:49:19 +0530 Subject: [PATCH] Fix broken PyGithub link in github provider doc PyGithub url referenced on github provider documentation page was broken. Corrected to proper link. --- docs/apache-airflow-providers-github/operators/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apache-airflow-providers-github/operators/index.rst b/docs/apache-airflow-providers-github/operators/index.rst index 9526643c41925..bc22bfb897e93 100644 --- a/docs/apache-airflow-providers-github/operators/index.rst +++ b/docs/apache-airflow-providers-github/operators/index.rst @@ -24,7 +24,7 @@ Use the :class:`~airflow.providers.github.operators.GithubOperator` to execute Operations in a `GitHub `__. You can build your own operator using :class:`~airflow.providers.github.operators.GithubOperator` -and passing **github_method** and **github_method_args** from top level `PyGithub `__ methods. +and passing **github_method** and **github_method_args** from top level `PyGithub `__ methods. You can further process the result using **result_processor** Callable as you like. An example of Listing all Repositories owned by a user, **client.get_user().get_repos()** can be implemented as following: