mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-05 22:28:58 +01:00
14 lines
321 B
YAML
14 lines
321 B
YAML
|
name: "Label Issues"
|
||
|
on:
|
||
|
issues:
|
||
|
types: [opened, edited]
|
||
|
|
||
|
jobs:
|
||
|
label:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: github/issue-labeler@v2.0
|
||
|
with:
|
||
|
configuration-path: .github/config/labels.yml
|
||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|