mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-11 04:22:00 +01:00
de77ac9f49
- Added label_issues.yml to label issues with the correct MC version - Refactored manage_issues.yml to close_issues.yml
13 lines
321 B
YAML
13 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 }}
|