diff --git a/.github/ISSUE_TEMPLATE/fix-update-alternative.md b/.github/ISSUE_TEMPLATE/fix-update-alternative.md index 61a8117..184317e 100644 --- a/.github/ISSUE_TEMPLATE/fix-update-alternative.md +++ b/.github/ISSUE_TEMPLATE/fix-update-alternative.md @@ -2,7 +2,7 @@ name: Fix/update alternative about: Fix or update an exsting alternative. title: "[FIX] Fix/update alternative" -labels: '' +labels: 'fix' assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/new-alternative.md b/.github/ISSUE_TEMPLATE/new-alternative.md index 77b798f..d42d4cb 100644 --- a/.github/ISSUE_TEMPLATE/new-alternative.md +++ b/.github/ISSUE_TEMPLATE/new-alternative.md @@ -2,7 +2,7 @@ name: New alternative about: Add a new alternative for a Google service title: "[NEW] New alternative" -labels: '' +labels: 'new' assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/other.md b/.github/ISSUE_TEMPLATE/other.md index be5d803..624e840 100644 --- a/.github/ISSUE_TEMPLATE/other.md +++ b/.github/ISSUE_TEMPLATE/other.md @@ -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 - diff --git a/.github/ISSUE_TEMPLATE/remove-alternative.md b/.github/ISSUE_TEMPLATE/remove-alternative.md index 6fd6555..f883dab 100644 --- a/.github/ISSUE_TEMPLATE/remove-alternative.md +++ b/.github/ISSUE_TEMPLATE/remove-alternative.md @@ -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: '' --- diff --git a/.github/labeler.yml b/.github/labeler.yml deleted file mode 100644 index 7cd9db4..0000000 --- a/.github/labeler.yml +++ /dev/null @@ -1,8 +0,0 @@ -fix: - - 'FIX' -new: - - 'NEW' -remove: - - 'REMOVE' -other: - - 'OTHER' diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml deleted file mode 100644 index fb4944e..0000000 --- a/.github/workflows/labeler.yml +++ /dev/null @@ -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