You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/01/28 22:41:01 UTC

[airflow] branch main updated (1a53395 -> 5d23fbe)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from 1a53395  Fix async_mode config key (#21179)
     add 5d23fbe  Adding GitHub provider (#21076)

No new revisions were added by this update.

Summary of changes:
 .../airflow_providers_bug_report.yml               |   1 +
 CONTRIBUTING.rst                                   |  14 +-
 INSTALL                                            |  14 +-
 .../providers/{alibaba => github}/CHANGELOG.rst    |   4 +-
 .../providers/github}/__init__.py                  |   0
 .../providers/github/example_dags}/__init__.py     |   0
 .../github/example_dags/example_github.py          | 101 +++++++++++++
 .../providers/github/hooks}/__init__.py            |   0
 airflow/providers/github/hooks/github.py           |  80 +++++++++++
 .../providers/github/operators}/__init__.py        |   0
 airflow/providers/github/operators/github.py       |  82 +++++++++++
 .../providers/{influxdb => github}/provider.yaml   |  28 ++--
 .../providers/github/sensors}/__init__.py          |   0
 airflow/providers/github/sensors/github.py         | 159 +++++++++++++++++++++
 .../commits.rst}                                   |  12 +-
 .../connections/github.rst}                        |  33 ++---
 .../index.rst                                      |  29 ++--
 .../installing-providers-from-sources.rst          |   0
 .../operators/index.rst                            |  71 +++++++++
 docs/apache-airflow/extra-packages-ref.rst         |   2 +
 setup.py                                           |   4 +
 tests/{timetables => providers/github}/__init__.py |   0
 .../github/hooks}/__init__.py                      |   0
 .../test_jira.py => github/hooks/test_github.py}   |  26 ++--
 .../github/operators}/__init__.py                  |   0
 .../operators/test_github.py}                      |  58 ++++----
 .../github/sensors}/__init__.py                    |   0
 .../test_jira.py => github/sensors/test_github.py} |  55 ++++---
 28 files changed, 625 insertions(+), 148 deletions(-)
 copy airflow/providers/{alibaba => github}/CHANGELOG.rst (100%)
 copy {tests/timetables => airflow/providers/github}/__init__.py (100%)
 copy {tests/timetables => airflow/providers/github/example_dags}/__init__.py (100%)
 create mode 100644 airflow/providers/github/example_dags/example_github.py
 copy {tests/timetables => airflow/providers/github/hooks}/__init__.py (100%)
 create mode 100644 airflow/providers/github/hooks/github.py
 copy {tests/timetables => airflow/providers/github/operators}/__init__.py (100%)
 create mode 100644 airflow/providers/github/operators/github.py
 copy airflow/providers/{influxdb => github}/provider.yaml (63%)
 copy {tests/timetables => airflow/providers/github/sensors}/__init__.py (100%)
 create mode 100644 airflow/providers/github/sensors/github.py
 copy docs/{apache-airflow-providers-amazon/secrets-backends/index.rst => apache-airflow-providers-github/commits.rst} (89%)
 copy docs/{apache-airflow-providers-influxdb/connections/influxdb.rst => apache-airflow-providers-github/connections/github.rst} (52%)
 copy docs/{apache-airflow-providers-influxdb => apache-airflow-providers-github}/index.rst (76%)
 copy docs/{apache-airflow-providers-zendesk => apache-airflow-providers-github}/installing-providers-from-sources.rst (100%)
 create mode 100644 docs/apache-airflow-providers-github/operators/index.rst
 copy tests/{timetables => providers/github}/__init__.py (100%)
 copy tests/{timetables => providers/github/hooks}/__init__.py (100%)
 copy tests/providers/{jira/hooks/test_jira.py => github/hooks/test_github.py} (62%)
 copy tests/{timetables => providers/github/operators}/__init__.py (100%)
 copy tests/providers/{jira/sensors/test_jira.py => github/operators/test_github.py} (50%)
 copy tests/{timetables => providers/github/sensors}/__init__.py (100%)
 copy tests/providers/{jira/sensors/test_jira.py => github/sensors/test_github.py} (52%)