1# This file configures which paths automatically get which label on new pull 2# requests. 3# 4# It generally has the syntax: 5# 6# <label 0>: 7# - <glob-path 0> 8# - ... 9# - <glob-path n> 10# ... 11# <label n>: 12# - <glob-path 0> 13# - ... 14# - <glob-path n> 15# 16# See https://github.com/actions/labeler for details. 17# 18# Note that we keep the labels in alphabetical order below. 19 20"cranelift": 21 - "cranelift/**" 22 23"cranelift:area:machinst": 24 - "cranelift/codegen/src/machinst/**" 25 26"cranelift:area:aarch64": 27 - "cranelift/codegen/src/isa/aarch64/**" 28 29"cranelift:area:x64": 30 - "cranelift/codegen/src/isa/x64/**" 31 32"cranelift:docs": 33 - "cranelift/docs/**" 34 35"cranelift:meta": 36 - "cranelift/codegen/meta/**" 37 38"cranelift:module": 39 - "cranelift/faerie/**" 40 - "cranelift/module/**" 41 - "cranelift/object/**" 42 - "cranelift/simplejit/**" 43 44"cranelift:wasm": 45 - "cranelift/wasm/**" 46 - "cranelift/wasmtests/**" 47 48"fuzzing": 49 - "crates/fuzzing/**" 50 - "fuzz/**" 51 52"isle": 53 - "cranelift/isle/**" 54 - "**.isle" 55 - "cranelift/codegen/src/isa/*/lower/isle.rs" 56 - "cranelift/codegen/src/isa/*/lower/isle/**" 57 - "cranelift/codegen/src/opts/*" 58 59"pulley": 60 - "pulley/**" 61 62"wasi": 63 - "crates/wasi/**" 64 - "crates/wasi-common/**" 65 - "crates/wiggle/**" 66 67"wasmtime:api": 68 - "crates/wasmtime/**" 69 70"wasmtime:c-api": 71 - "crates/c-api/**" 72 73"wasmtime:config": 74 - "crates/wasmtime/src/config.rs" 75 - "crates/wasmtime/src/config/**" 76 77"wasmtime:docs": 78 - "*.md" 79 - "docs/**" 80 81"wasmtime:ref-types": 82 - "crates/cranelift/src/gc.rs" 83 - "crates/cranelift/src/gc/**" 84 - "crates/wasmtime/src/runtime/gc.rs" 85 - "crates/wasmtime/src/runtime/gc/**" 86 - "crates/wasmtime/src/runtime/vm/gc.rs" 87 - "crates/wasmtime/src/runtime/vm/gc/**" 88 89"winch": 90 - "winch/**" 91 - "crates/winch/**" 92 93"wizer": 94 - "crates/wizer/**" 95 - "src/commands/wizer.rs" 96