19 lines
311 B
YAML
19 lines
311 B
YAML
|
name: Labeler
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
labeler:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Check out the repository
|
||
|
uses: actions/checkout@v3.0.2
|
||
|
|
||
|
- name: Run Labeler
|
||
|
uses: crazy-max/ghaction-github-labeler@v3.1.1
|
||
|
with:
|
||
|
skip-delete: true
|