Skip to content

Commit

Permalink
[#557] Improve naming
Browse files Browse the repository at this point in the history
  • Loading branch information
markgravity committed Jan 14, 2025
1 parent fd30a0e commit 34f498b
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 34 deletions.
65 changes: 34 additions & 31 deletions .github/project_workflows/configs/changelog-config.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,35 @@
{
"categories": [
{
"title": "## ✨ Features",
"labels": [
"type: feature"
]
},
{
"title": "## 🐛 Bug fixes",
"labels": [
"type: bug"
]
},
{
"title": "## 🧹 Chores",
"labels": [
"type: chore"
]
},
{
"title": "## Others",
"exclude_labels": [
"type: feature",
"type: bug",
"type: chore",
"type: release"
]
}
],
"max_pull_requests": 200
}
"categories": [
{
"title": "## ✨ Features",
"labels": [
"type : feature"
],
"empty_content": "N/A"
},
{
"title": "## 🐛 Bug fixes",
"labels": [
"type : bug"
],
"empty_content": "N/A"
},
{
"title": "## 🧹 Chores",
"labels": [
"type : chore"
],
"empty_content": "N/A"
},
{
"title": "## Others",
"exclude_labels": [
"type : feature",
"type : bug",
"type : chore",
"type : release"
]
}
],
"max_pull_requests": 200
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Create Release Pull Request
name: Create the Release pull request and Bump the next version

on:
workflow_dispatch:
Expand Down Expand Up @@ -31,11 +31,11 @@ jobs:
- uses: nimblehq/github-actions-workflows/[email protected]
with:
release_version: ${{ env.RELEASE_VERSION }}
changelog_configuration: ".github/workflows/config/changelog-config.json"
changelog_configuration: ".github/workflows/configs/changelog-config.json"
assignee: bot-nimble

create_bump_version_pull_request:
name: Create Bump Version Pull Request
name: Bump Version Pull Request
runs-on: macos-latest
timeout-minutes: 30
permissions:
Expand Down

0 comments on commit 34f498b

Please sign in to comment.