From 45ac667986ddf9726e45cfbb2cc46ed45e38b526 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Wed, 4 Sep 2019 12:44:56 -0700 Subject: [PATCH] chore: fix PR labeler action (#324) this should fix the build failure Signed-off-by: Eliza Weisman --- .github/labeler.yml | 6 ++++-- .github/workflows/label.yml | 2 +- .github/workflows/publish_pages.yml | 25 ------------------------- 3 files changed, 5 insertions(+), 28 deletions(-) delete mode 100644 .github/workflows/publish_pages.yml diff --git a/.github/labeler.yml b/.github/labeler.yml index 6d7ca898..19283fdc 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,7 +1,9 @@ crate/tracing: tracing/** crate/core: tracing-core/** -crate/proc-macros: tracing-attributes/** -crate/fmt: tracing-fmt/** +crate/proc-macros: +- tracing-attributes/** +- tracing-macros/** crate/futures: tracing-futures/** crate/log: tracing-log/** crate/subscriber: tracing-subscriber/** +kind/docs: README.md diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index 22acf7d6..c01c3569 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -1,5 +1,5 @@ name: Labeler -on: [pull-request] +on: [pull_request] jobs: label: diff --git a/.github/workflows/publish_pages.yml b/.github/workflows/publish_pages.yml deleted file mode 100644 index e87ca1e5..00000000 --- a/.github/workflows/publish_pages.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Publish Pages -on: - push: - branches: - - master - # only rebuild RustDoc when source code has changed, or the workflow is modified - paths: - - /**/src/** - - .github/workflows - -jobs: - publish_doc: - runs-on: ubuntu-latest - steps: - # check out the repo - - uses: actions/checkout@v1 - # This step references the directory that contains the action. - - name: build docs - run: cargo doc --all - - name: publish - uses: maxheld83/ghpages@v0.2.1 - env: - BUILD_DIR=target/doc - -