This is an automated email from the ASF dual-hosted git repository.
uranusjr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new d370362d14 Fix broken PyGithub link in github provider doc (#27055)
d370362d14 is described below
commit d370362d147ecbbcb699acea3aa33f0be5e24c16
Author: Akshay-samsung <[email protected]>
AuthorDate: Mon Oct 17 15:57:51 2022 +0530
Fix broken PyGithub link in github provider doc (#27055)
---
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 9526643c41..bc22bfb897 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 <https://www.github.com/>`__.
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 <https://www.pygithub.readthedocs.io/>`__ methods.
+and passing **github_method** and **github_method_args** from top level
`PyGithub <https://pygithub.readthedocs.io/>`__ 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: