forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboring-cyborg.yml
244 lines (209 loc) · 7.39 KB
/
boring-cyborg.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
---
# Details: https://github.com/kaxil/boring-cyborg
labelPRBasedOnFilePath:
provider:Google:
- airflow/providers/google/*
- airflow/providers/google/**/*
- docs/howto/connection/gcp.rst
- docs/howto/connection/gcp_sql.rst
- docs/howto/operator/google/*
- tests/providers/google/*
- tests/providers/google/**/*
provider:AWS:
- airflow/providers/amazon/aws/**/*
- tests/providers/amazon/aws/**/*
- tests/providers/amazon/aws/*
- docs/howto/connection/aws.rst
- docs/howto/operator/amazon/aws/*
provider:Azure:
- airflow/providers/microsoft/azure/**/*
- tests/providers/microsoft/azure/**/*
- tests/providers/microsoft/azure/*
provider:Apache:
- airflow/providers/apache/**/*
- docs/howto/operator/apache/*
- tests/providers/apache/*
- tests/providers/apache/**/*
k8s:
- airflow/**/kubernetes_*.py
- airflow/example_dags/example_kubernetes_executor.py
- airflow/example_dags/example_kubernetes_executor_config.py
- airflow/kubernetes/**/*
- docs/executor/kubernetes.rst
- docs/howto/connection/kubernetes.rst
- docs/howto/operator/kubernetes.rst
- docs/kubernetes.rst
- tests/runtime/kubernetes/*
area:API:
- airflow/api/*
- airflow/api/**/*
- airflow/api_connexion/*
- airflow/api_connexion/**/*
- airflow/www/api/*
- airflow/www/api/**/*
- clients/*
- clients/**/*
- docs/rest-api-ref.rst
- docs/stable-rest-api/*
- docs/stable-rest-api/**/*
- tests/api_connexion/*
- tests/api_connexion/**/*
- tests/www/api/*
- tests/www/api/**/*
area:dev:
- airflow/mypy/*
- airflow/mypy/**/*
- scripts/**/*
- scripts/*
- dev/**/*
- dev/*
- .github/**/*
- .github/*
- breeze
- Dockerfile.ci
- BREEZE.rst
- breeze-complete
- confirm
- CONTRIBUTING.*
- LOCAL_VIRTUALENV.rst
- STATIC_CODE_CHECKS.rst
- TESTING.rst
- yamllint-config.yml
- .asf.yaml
- .bash_completion
- .dockerignore
- .flake8
- .hadolint.yaml
- .pre-commit-config.yaml
- .rat-excludes
- .readthedocs.yml
- .travis.yml
- airflow/www/.eslintignore
- airflow/www/.eslintrc
- airflow/www/.stylelintignore
- airflow/www/.stylelintrc
area:docs:
- docs/**/*
- docs/*
area:helm-chart:
- chart/**/*
- chart/*
area:Webserver:
- airflow/cli/commands/webserver_command.py
- airflow/www/**/*
- airflow/www_rbac/**/*
- tests/cli/commands/test_webserver_command.py
- tests/www/**/*
- tests/www/*
- tests/www_rbac/**/*
- tests/www_rbac/*
area:CLI:
- airflow/bin/cli.py
- airflow/cli/**/*.py
- tests/cli/**/*.py
- docs/cli-ref.rst
- docs/usage-cli.rst
area:Lineage:
- airflow/lineage/**/*
- airflow/lineage/*
- tests/lineage/*
- docs/lineage.rst
area:Logging:
- airflow/providers/**/log/*
- airflow/utils/log/*
- docs/howto/write-logs.rst
- tests/providers/**/log/*
- tests/utils/log/*
- tests/utils/log/**/*
area:Plugins:
- airflow/cli/commands/plugins_command.py
- airflow/plugins_manager.py
- tests/cli/commands/test_plugins_command.py
- tests/plugins/*
- docs/plugins.rst
area:Scheduler/Executor:
- airflow/executors/*
- airflow/jobs/*
- airflow/task/task_runner/*
- airflow/utils/dag_processing.py
- docs/executor/*
- docs/scheduler.rst
- tests/executors/*
- tests/jobs/*
area:Secrets:
- airflow/secrets/*
- airflow/providers/**/secrets/*
- tests/secrets/*
- tests/providers/**/secrets/*
- docs/howto/use-alternative-secrets-backend.rst
area:Serialization:
- airflow/serialization/*
- tests/serialization/*
- docs/dag-serialization.rst
# Various Flags to control behaviour of the "Labeler"
labelerFlags:
# If this flag is changed to 'false', labels would only be added when the PR is first created
# and not when existing PR is updated.
# The default is 'true' which means the labels would be added when PR is updated even if they
# were removed by the user
labelOnPRUpdates: false
# Comment to be posted to welcome users when they open their first PR
firstPRWelcomeComment: >
Congratulations on your first Pull Request and welcome to the Apache Airflow community!
If you have any issues or are unsure about any anything please check our
Contribution Guide (https://github.com/apache/airflow/blob/master/CONTRIBUTING.rst)
Here are some useful points:
- Pay attention to the quality of your code (flake8, pylint and type annotations). Our [pre-commits](
https://github.com/apache/airflow/blob/master/STATIC_CODE_CHECKS.rst#prerequisites-for-pre-commit-hooks)
will help you with that.
- In case of a new feature add useful documentation (in docstrings or in `docs/` directory).
Adding a new operator? Check this short
[guide](https://github.com/apache/airflow/blob/master/docs/howto/custom-operator.rst)
Consider adding an example DAG that shows how users should use it.
- Consider using [Breeze environment](https://github.com/apache/airflow/blob/master/BREEZE.rst) for testing
locally, it’s a heavy docker but it ships with a working Airflow and a lot of integrations.
- Be patient and persistent. It might take some time to get a review or get the final approval from
Committers.
- Please follow [ASF Code of Conduct](https://www.apache.org/foundation/policies/conduct) for all
communication including (but not limited to) comments on Pull Requests, Mailing list and Slack.
- Be sure to read the [Airflow Coding style](
https://github.com/apache/airflow/blob/master/CONTRIBUTING.rst#coding-style-and-best-practices).
Apache Airflow is a community-driven project and together we are making it better 🚀.
In case of doubts contact the developers at:
Mailing List: [email protected]
Slack: https://apache-airflow-slack.herokuapp.com/
# Comment to be posted to congratulate user on their first merged PR
firstPRMergeComment: >
Awesome work, congrats on your first merged pull request!
# Comment to be posted to on first time issues
firstIssueWelcomeComment: >
Thanks for opening your first issue here! Be sure to follow the issue template!
insertIssueLinkInPrDescription:
descriptionIssuePlaceholderRegexp: "^Issue link: (.*)$"
matchers:
jiraIssueMatch:
titleIssueIdRegexp: \[(AIRFLOW-[0-9]{4})\]
descriptionIssueLink: "[${1}](https://issues.apache.org/jira/browse/${1})"
docOnlyIssueMatch:
titleIssueIdRegexp: \[(AIRFLOW-X{4})\]
descriptionIssueLink: "`Document only change, no JIRA issue`"
checkUpToDate:
- airflow/migrations/*
- airflow/migrations/**/*
- airflow/alembic.ini