Labels and greetings Github workflows

This commit is contained in:
Quentin McGaw
2020-03-25 18:20:52 -04:00
parent f033204844
commit 6c12fdff2b
3 changed files with 80 additions and 0 deletions

18
.github/workflows/labels.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: labels
on:
push:
branches: ["master"]
paths:
- '.github/labels.yml'
- '.github/workflows/labels.yml'
jobs:
labeler:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Labeler
if: success()
uses: crazy-max/ghaction-github-labeler@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}