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 authored and adamjensenbot committed Dec 20, 2024
1 parent 52d309b commit 7c70835
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']
labels: ['fix']
- type: 'feat'
nouns: ['feat']
labels: ['feat']
- type: 'build'
nouns: ['build']
labels: ['build']
- type: 'chore'
nouns: ['chore']
labels: ['chore']
- type: 'ci'
nouns: ['ci']
labels: ['ci']
- type: 'docs'
nouns: ['docs']
labels: ['docs']
- type: 'style'
nouns: ['style']
labels: ['style']
- type: 'refactor'
nouns: ['refactor']
labels: ['refactor']
- type: 'perf'
nouns: ['perf']
labels: ['perf']
- type: 'test'
nouns: ['test']
labels: ['test']

0 comments on commit 7c70835

Please sign in to comment.