diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2018-09-27 20:30:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-27 20:30:59 -0400 |
commit | 6b9cc6fee11df3070eaa7621c004669c64f9f69d (patch) | |
tree | 11b52d9ebeefe4d38514b8dc40315b13e9718950 | |
parent | 5098d198de928fea2dc855f3ff0b572cc6eaf647 (diff) | |
parent | c3f3c3911642899255f87a97959c72cc096f5136 (diff) | |
download | rails-6b9cc6fee11df3070eaa7621c004669c64f9f69d.tar.gz rails-6b9cc6fee11df3070eaa7621c004669c64f9f69d.tar.bz2 rails-6b9cc6fee11df3070eaa7621c004669c64f9f69d.zip |
Merge pull request #34007 from gmcgibbon/automatic_labeling
Add probot autolabeler config
-rw-r--r-- | .github/autolabeler.yml | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/.github/autolabeler.yml b/.github/autolabeler.yml new file mode 100644 index 0000000000..c8033d8c30 --- /dev/null +++ b/.github/autolabeler.yml @@ -0,0 +1,46 @@ +actioncable: + - "actioncable/**/*" +actionmailer: + - "actionmailer/**/*" +actionpack: + - "actionpack/**/*" +routing: + - "actionpack/**/*routing*" +actionview: + - "actionview/**/*" +activejob: + - "activejob/**/*" +activemodel: + - "activemodel/**/*" +activerecord: + - "activerecord/**/*" +MySQL: + - "activerecord/**/*mysql*" +PostgreSQL: + - "activerecord/**/*postgresql*" +enum: + - "activerecord/**/*enum*" +activestorage: + - "activestorage/**/*" +activesupport: + - "activesupport/**/*" +rails-ujs: + - "actionview/app/assets/javascripts/rails-ujs*/*" +railties: + - "railties/**/*" +engines: + - "railties/lib/rails/engine/**/*" + - "railties/test/railties/**/*engine*" +docs: + - "guides/**/*" +asset pipeline: + - "guides/source/asset_pipeline.md" +ci issues: + - "ci/**/*" +security: + - "**/*security*" + - "**/*secure*" + - "**/*sanitize*" + - "**/*sanitization*" +i18n: + - "**/*i18n*" |