Skip to content

Commit

Permalink
fix: Change label extractor method to match (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Topi99 authored Dec 3, 2021
1 parent 5a9091e commit dbcf39a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
},
{
"title": "## 📦 Dependencies",
"labels": ["dependencies", "build", "deps"]
"labels": ["deps", "build"]
},
{
"title": "## 📖 Documentation",
"labels": ["docs", "doc"]
"labels": ["docs"]
},
{
"title": "## 🧹 Chores",
Expand All @@ -35,37 +35,37 @@
"label_extractor": [
{
"pattern": "^feat",
"target": "feat",
"method": "match",
"on_property": "title"
},
{
"pattern": "^test",
"target": "test",
"method": "match",
"on_property": "title"
},
{
"pattern": "^build",
"target": "deps",
"method": "match",
"on_property": "title"
},
{
"pattern": "^fix",
"target": "fix",
"method": "match",
"on_property": "title"
},
{
"pattern": "^docs",
"target": "docs",
"method": "match",
"on_property": "title"
},
{
"pattern": "^doc",
"target": "docs",
"method": "match",
"on_property": "title"
},
{
"pattern": "^chore",
"target": "chore",
"method": "match",
"on_property": "title"
}
]
Expand Down

0 comments on commit dbcf39a

Please sign in to comment.