20 lines
377 B
YAML
20 lines
377 B
YAML
|
name: Manage Labels
|
||
|
|
||
|
on: push
|
||
|
|
||
|
jobs:
|
||
|
labeler:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
-
|
||
|
name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
-
|
||
|
name: Run Labeler
|
||
|
if: success()
|
||
|
uses: crazy-max/ghaction-github-labeler@v2
|
||
|
with:
|
||
|
yaml_file: .github/labels.yml
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|