Skip to content
This repository has been archived by the owner on May 24, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
MicahParks authored May 13, 2023
2 parents 4ae7395 + 3df1478 commit 3d9362d
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 59 deletions.
20 changes: 20 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: v1
labels:
- label: '📒 Documentation'
matcher:
title: '\b(docs|doc:|\[doc\]|README|typos|comment|documentation)\b'
- label: '☢️ Bug'
matcher:
title: '\b(fix|race|bug|missing|correct)\b'
- label: '🧹 Updates'
matcher:
title: '\b(improve|update|refactor|deprecated|remove|unused|test)\b'
- label: '🤖 Dependencies'
matcher:
title: '\b(bumb|bdependencies)\b'
- label: '✏️ Feature'
matcher:
title: '\b(feature|feat|create|implement|add)\b'
- label: '🤔 Question'
matcher:
title: '\b(question|how)\b'
55 changes: 0 additions & 55 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,61 +32,6 @@ version-resolver:
- '🤖 Dependencies'
- '🧹 Updates'
default: patch
autolabeler:
- label: '📒 Documentation'
title:
- '/docs/i'
- '/doc:/i'
- '/\[doc\]/i'
- '/README/i'
- '/typos/i'
- '/comment/i'
- '/📚/i'
- '/📒/i'
- '/📝/i'
- '/documentation/i'
- label: '☢️ Bug'
title:
- '/fix/i'
- '/race/i'
- '/bug/i'
- '/missing/i'
- '/correct/i'
- '/🐛/i'
- '/☢/i'
- '/🩹/i'
- '/🚨/i'
- label: '🧹 Updates'
title:
- '/improve/i'
- '/update/i'
- '/refactor/i'
- '/deprecated/i'
- '/remove/i'
- '/unused/i'
- '/test/i'
- '/⚡/i'
- '/👷/i'
- '/🚧/i'
- '/♻️/i'
- '/🎨/i'
- '/🧪/i'
- '/🧹/i'
- label: '🤖 Dependencies'
title:
- '/bumb/i'
- '/dependencies/i'
- '/📦/i'
- '/🤖/i'
- label: '✏️ Feature'
title:
- '/feature/i'
- '/create/i'
- '/implement/i'
- '/add/i'
- '/🚀/i'
- '/✨/i'
- '/🔥/i'
template: |
$CHANGES
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/auto-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Auto labeler
on:
issues:
types: [ opened, edited, milestoned ]
pull_request_target:
types: [ opened ]
permissions:
contents: read
issues: write
pull-requests: write
statuses: write
checks: write
jobs:
labeler:
runs-on: ubuntu-latest
steps:
- name: Check Labels
id: labeler
uses: fuxingloh/multi-labeler@v2
with:
github-token: ${{secrets.GITHUB_TOKEN}}
5 changes: 1 addition & 4 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@ on:
# branches to consider in the event; optional, defaults to all
branches:
- master
# pull_request event is required only for autolabeler
pull_request:
# Only following types are handled by the action, but one can default to all as well
types: [opened, reopened, synchronize]
- main

jobs:
update_release_draft:
Expand Down

0 comments on commit 3d9362d

Please sign in to comment.