1
0
mirror of https://github.com/taigrr/bitcask synced 2025-01-18 04:03:17 -08:00

Added labeler workflow

This commit is contained in:
James Mills 2020-01-26 13:20:18 +10:00
parent 96dac702e9
commit 08e4c9856e
No known key found for this signature in database
GPG Key ID: AC4C014F1440EBD6
2 changed files with 19 additions and 0 deletions

9
.github/labeler.yml vendored Normal file
View File

@ -0,0 +1,9 @@
documentation:
- "**/*.md"
tests:
- "**/*_test.go"
dependencies:
- g0.mod
- go.sum

10
.github/workflows/label.yml vendored Normal file
View File

@ -0,0 +1,10 @@
name: Labeler
on: [pull_request]
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v2
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"