Create/.github/workflows/label_issues.yml
Cael Warner de77ac9f49
Added "Label Issues" action
- Added label_issues.yml to label issues with the correct MC version
- Refactored manage_issues.yml to close_issues.yml
2021-12-15 11:24:05 -08:00

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 }}