Skip to content

Commit

Permalink
fix: update PR labeling workflow (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
flavioltonon authored May 5, 2023
1 parent bd90ec6 commit e33d5c8
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/conventional-label.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# Warning, do not check out untrusted code with
# the pull_request_target event.
name: Label Pull Request
# This workflow sets labels on pull requests with names that follow Conventional Commits conventions
name: Pull Request Labeler
on:
pull_request_target:
types: [ opened, edited ]
jobs:
label:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: bcoe/[email protected]
with:
type_labels: {"feat": "feature", "fix": "fix", "docs": "documentation", "test": "tests", "tests": "tests"}
ignored_types: []
type_labels: '{"feat": "feature", "fix": "fix", "docs": "documentation", "test": "tests", "tests": "tests", "chore": "chore"}'
ignored_types: '[]'

0 comments on commit e33d5c8

Please sign in to comment.