From 7b4c2866877717b016e4beeed34583a74aa5c4cb Mon Sep 17 00:00:00 2001 From: Sam Richards Date: Thu, 4 Jun 2020 11:29:12 -0700 Subject: [PATCH] Add labeler action [#296] --- .github/labeler.yml | 21 +++++++++++++++++++++ .github/workflows/labeler.yml | 13 +++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .github/labeler.yml create mode 100644 .github/workflows/labeler.yml diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 00000000000..64a185e43c2 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,21 @@ +'Status: Review Needed': + - docs/**/* + +'Type: Content': + - docs/**/*.md + +'Type: Design': + - docs/**/*.styl + +'Type: Documentation': + - README.md + +'Type: Tooling': + - .github/**/* + +'Type: Dependencies': + - package.json + +'Type: Translation': + - docs/translations/**/* + - docs/.vuepress/theme/utils/translations.js diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 00000000000..aeced638246 --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,13 @@ +name: Labeler +on: + schedule: + - cron: '0 * * * *' + +jobs: + label: + runs-on: ubuntu-latest + + steps: + - uses: actions/labeler@v2 + with: + repo-token: '${{ secrets.GITHUB_TOKEN }}'