airflow.providers.github.sensors.github
¶
Module Contents¶
Classes¶
Base GithubSensor which can monitor for any change. |
|
Base GitHub sensor at Repository level. |
|
Monitor a github tag for its creation. |
- class airflow.providers.github.sensors.github.GithubSensor(*, method_name, github_conn_id='github_default', method_params=None, result_processor=None, **kwargs)[source]¶
Bases:
airflow.sensors.base.BaseSensorOperator
Base GithubSensor which can monitor for any change.
- Parameters
- class airflow.providers.github.sensors.github.BaseGithubRepositorySensor(*, github_conn_id='github_default', repository_name=None, result_processor=None, **kwargs)[source]¶
Bases:
GithubSensor
Base GitHub sensor at Repository level.
- Parameters
- class airflow.providers.github.sensors.github.GithubTagSensor(*, github_conn_id='github_default', tag_name=None, repository_name=None, **kwargs)[source]¶
Bases:
BaseGithubRepositorySensor
Monitor a github tag for its creation.
- Parameters