Skip to content

Commit

Permalink
fix duplicate prs in release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Mart committed Aug 30, 2023
1 parent a5ac3e9 commit 0b47833
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/generate-release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,16 @@ env:
CONFIG_JSON: |
{
"template": "#{{CHANGELOG}}\n\n## 📦 Uncategorized\n\n#{{UNCATEGORIZED}}\n",
"pr_template": "- [(PR ##{{NUMBER}})](#{{URL}}) | #{{TITLE}}",
"pr_template": "- [(PR ##{{NUMBER}})](#{{URL}}) | #{{TITLE}}",
"categories": [
{
"title": "## 🐛 Fixes",
"labels": ["bug"]
},
{
"title": "## 💻 App development",
"labels": ["Dev Experience", "Front-end Infra"]
"labels": ["Dev Experience", "Front-end Infra"],
"exclude_labels": ["documentation"]
},
{
"title": "### 📄 Developer experience docs",
Expand All @@ -45,7 +46,8 @@ env:
},
{
"title": "## 🚀 Default apps",
"labels": ["System app"]
"labels": ["System app"],
"exclude_labels": ["documentation"]
},
{
"title": "### 📄 Docs",
Expand All @@ -54,7 +56,8 @@ env:
},
{
"title": "## ⚖️ Governance",
"labels": ["Governance"]
"labels": ["Governance"],
"exclude_labels": ["documentation"]
},
{
"title": "### 📄 Docs",
Expand All @@ -63,7 +66,8 @@ env:
},
{
"title": "## 🏗️ Infrastructure Providers",
"labels": ["Node infra"]
"labels": ["Node infra"],
"exclude_labels": ["documentation"]
},
{
"title": "### 📄 Docs",
Expand Down

0 comments on commit 0b47833

Please sign in to comment.