Skip to content

Commit

Permalink
ci: assign label based on conventional commits
Browse files Browse the repository at this point in the history
  • Loading branch information
cheina97 committed Dec 18, 2024
1 parent bf0d37b commit 7de7197
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/labels.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Conventional Commit Labels
on:
pull_request_target:
types: [opened, synchronize, reopened]

jobs:
assign-labels:
runs-on: ubuntu-latest
name: Assign labels in pull request
if: github.event.pull_request.merged == false
steps:
- name: Execute assign labels
id: action-assign-labels
uses: mauroalderete/action-assign-labels@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
conventional-commits: |
conventional-commits:
- type: 'fix'
nouns: ['FIX', 'Fix', 'fix', 'FIXED', 'Fixed', 'fixed']
labels: ['bug']
- type: 'feature'
nouns: ['FEATURE', 'Feature', 'feature', 'FEAT', 'Feat', 'feat']
labels: ['feature']
- type: 'docs'
nouns: ['DOCS', 'Docs', 'docs']
labels: ['docs']
- type: 'refactor'
nouns: ['REFACTOR', 'Refactor', 'refactor']
labels: ['refactor']
- type: 'test'
nouns: ['TEST', 'Test', 'test']
labels: ['test']
- type: 'style'
nouns: ['STYLE', 'Style', 'style']
labels: ['style']
- type: 'chore'
nouns: ['CHORE', 'Chore', 'chore']
labels: ['chore']
- type: 'ci'
nouns: ['CI', 'Ci', 'ci']
labels: ['ci']
- type: 'perf'
nouns: ['PERF', 'Perf', 'perf']
labels: ['perf']
- type: 'breaking_change'
nouns: ['BREAKING CHANGE', 'BREAKING', 'MAJOR']
labels: ['BREAKING CHANGE']

0 comments on commit 7de7197

Please sign in to comment.