diff --git a/.github/labeler.yml b/.github/labeler.yml index 65cbaec0e7..a969d8da65 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -20,23 +20,28 @@ cranelift: - cranelift/** -"cranelift:module": - - cranelift/cranelift-module/** - - cranelift/cranelift-object/** - - cranelift/cranelift-faerie/** - - cranelift/cranelift-simplejit/** - "cranelift:docs": - cranelift/docs/** "cranelift:meta": - cranelift/codegen/meta/** -lightbeam: - - crates/lightbeam/** +"cranelift:module": + - cranelift/faerie/** + - cranelift/module/** + - cranelift/object/** + - cranelift/simplejit/** + +"cranelift:wasm": + - cranelift/wasm/** + - cranelift/wasmtests/** fuzzing: - crates/fuzzing/** + - fuzz/** + +lightbeam: + - crates/lightbeam/** wasi: - crates/wasi/** @@ -48,3 +53,7 @@ wasi: "wasmtime:c-api": - crates/c-api/** + +"wasmtime:docs": + - *.md + - docs/** diff --git a/.github/subscribe-to-label.json b/.github/subscribe-to-label.json index df5808d000..d2b2835dae 100644 --- a/.github/subscribe-to-label.json +++ b/.github/subscribe-to-label.json @@ -1,3 +1,4 @@ { + "fitzgen": ["fuzzing"], "peterhuene": ["wasmtime:api", "wasmtime:c-api"] } diff --git a/.github/workflows/subscribe-to-label.yml b/.github/workflows/subscribe-to-label.yml index 22ae0fe9c5..4944047d78 100644 --- a/.github/workflows/subscribe-to-label.yml +++ b/.github/workflows/subscribe-to-label.yml @@ -2,13 +2,12 @@ name: "Subscribe to Label" on: issues: types: ["labeled"] - # Temporarily disabled until we fix the bot... - # schedule: - # # Run pull request triage every 5 minutes. Ideally, this would be on - # # "labeled" types of pull request events, but that doesn't work if the pull - # # request is from another fork. For example, see - # # https://github.com/actions/labeler/issues/12 - # - cron: '*/5 * * * *' + schedule: + # Run pull request triage every 5 minutes. Ideally, this would be on + # "labeled" types of pull request events, but that doesn't work if the pull + # request is from another fork. For example, see + # https://github.com/actions/labeler/issues/12 + - cron: '*/5 * * * *' jobs: triage: runs-on: ubuntu-latest