Issue templates now have labels
This commit is contained in:
parent
3493d38175
commit
643994d04f
|
@ -2,7 +2,7 @@
|
|||
name: Fix/update alternative
|
||||
about: Fix or update an exsting alternative.
|
||||
title: "[FIX] Fix/update alternative"
|
||||
labels: ''
|
||||
labels: 'fix'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
name: New alternative
|
||||
about: Add a new alternative for a Google service
|
||||
title: "[NEW] New alternative"
|
||||
labels: ''
|
||||
labels: 'new'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
|
|
@ -3,7 +3,7 @@ name: Other
|
|||
about: Anything else that does not fit the other templates. Blank issues are also
|
||||
permitted.
|
||||
title: "[OTHER]"
|
||||
labels: ''
|
||||
labels: 'other'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
@ -19,4 +19,3 @@ assignees: ''
|
|||
- [ ] **Include my name in [CONTRIBUTORS.md](https://github.com/tycrek/degoogle/blob/master/CONTRIBUTORS.md)**
|
||||
|
||||
### Details
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
name: Remove alternative
|
||||
about: Provide details on why an existing alternative should be removed.
|
||||
title: "[REMOVE] Remove alternative"
|
||||
labels: ''
|
||||
labels: 'remove'
|
||||
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