You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
401 B
19 lines
401 B
5 years ago
|
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 }}
|