Issue templates now have labels
This commit is contained in:
parent
3493d38175
commit
643994d04f
|
@ -2,7 +2,7 @@
|
||||||
name: Fix/update alternative
|
name: Fix/update alternative
|
||||||
about: Fix or update an exsting alternative.
|
about: Fix or update an exsting alternative.
|
||||||
title: "[FIX] Fix/update alternative"
|
title: "[FIX] Fix/update alternative"
|
||||||
labels: ''
|
labels: 'fix'
|
||||||
assignees: ''
|
assignees: ''
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
name: New alternative
|
name: New alternative
|
||||||
about: Add a new alternative for a Google service
|
about: Add a new alternative for a Google service
|
||||||
title: "[NEW] New alternative"
|
title: "[NEW] New alternative"
|
||||||
labels: ''
|
labels: 'new'
|
||||||
assignees: ''
|
assignees: ''
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
|
@ -3,7 +3,7 @@ name: Other
|
||||||
about: Anything else that does not fit the other templates. Blank issues are also
|
about: Anything else that does not fit the other templates. Blank issues are also
|
||||||
permitted.
|
permitted.
|
||||||
title: "[OTHER]"
|
title: "[OTHER]"
|
||||||
labels: ''
|
labels: 'other'
|
||||||
assignees: ''
|
assignees: ''
|
||||||
|
|
||||||
---
|
---
|
||||||
|
@ -19,4 +19,3 @@ assignees: ''
|
||||||
- [ ] **Include my name in [CONTRIBUTORS.md](https://github.com/tycrek/degoogle/blob/master/CONTRIBUTORS.md)**
|
- [ ] **Include my name in [CONTRIBUTORS.md](https://github.com/tycrek/degoogle/blob/master/CONTRIBUTORS.md)**
|
||||||
|
|
||||||
### Details
|
### Details
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
name: Remove alternative
|
name: Remove alternative
|
||||||
about: Provide details on why an existing alternative should be removed.
|
about: Provide details on why an existing alternative should be removed.
|
||||||
title: "[REMOVE] Remove alternative"
|
title: "[REMOVE] Remove alternative"
|
||||||
labels: ''
|
labels: 'remove'
|
||||||
assignees: ''
|
assignees: ''
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
fix:
|
|
||||||
- 'FIX'
|
|
||||||
new:
|
|
||||||
- 'NEW'
|
|
||||||
remove:
|
|
||||||
- 'REMOVE'
|
|
||||||
other:
|
|
||||||
- 'OTHER'
|
|
|
@ -1,15 +0,0 @@
|
||||||
name: RegEx Issue Title Labeler
|
|
||||||
on:
|
|
||||||
issues:
|
|
||||||
types: [opened, edited]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
add_label:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Apply Label
|
|
||||||
uses: tycrek/issue-labeler@v2.2
|
|
||||||
with:
|
|
||||||
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
||||||
configuration-path: .github/labeler.yml
|
|
||||||
enable-versioned-regex: 0
|
|
Loading…
Reference in New Issue