chore: fix PR labeler action (#324)

this should fix the build failure

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2019-09-04 12:44:56 -07:00 committed by GitHub
parent bc10a7e60c
commit 45ac667986
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 28 deletions

6
.github/labeler.yml vendored
View File

@ -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

View File

@ -1,5 +1,5 @@
name: Labeler
on: [pull-request]
on: [pull_request]
jobs:
label:

View File

@ -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