2019-10-20 06:19:39 +07:00
|
|
|
name: labels
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
paths:
|
|
|
|
- '.github/labels.yml'
|
|
|
|
- '.github/workflows/labels.yml'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
labeler:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
2019-10-24 23:41:57 +07:00
|
|
|
# https://github.com/actions/checkout
|
2019-10-20 06:19:39 +07:00
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
-
|
2019-10-24 23:41:57 +07:00
|
|
|
# https://github.com/crazy-max/ghaction-github-labeler
|
2019-10-20 06:19:39 +07:00
|
|
|
name: Run Labeler
|
|
|
|
if: success()
|
|
|
|
uses: crazy-max/ghaction-github-labeler@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|