Skip to content

Commit

Permalink
fix: trying to fix changelogs and test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MoritzLaurer committed Dec 12, 2024
1 parent 45de233 commit 798c175
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/changelog-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"title": "## 🚀 Features",
"labels": ["feature", "enhancement"],
"commits": ["^feat:", "^feature:"]
"commits": ["feat\\(.*\\):", "feat:"]
},
{
"title": "## ⚠️ Breaking Changes",
Expand All @@ -13,12 +13,12 @@
{
"title": "## 🐛 Bug Fixes",
"labels": ["fix", "bug"],
"commits": ["^fix:"]
"commits": ["fix\\(.*\\):", "fix:"]
},
{
"title": "## 📝 Documentation",
"labels": ["documentation", "docs"],
"commits": ["^docs:"]
"commits": ["docs:"]
},
{
"title": "## ⚡ Performance",
Expand Down Expand Up @@ -60,7 +60,7 @@
"ignore"
],
"sort": "ASC",
"template": "${{CHANGES}}\n\n## 📦 Full Changelog\n\nFor a complete list of changes, see the [full diff](https://github.com/MoritzLaurer/prompt_templates/compare/${{FROM_TAG}}...${{TO_TAG}})",
"template": "${{CHANGES}}\n\n## 📦 Full Changelog\n\n${{UNCATEGORIZED}}\n\nFor a complete list of changes, see the [full diff](${{RELEASE_DIFF}})",
"commit_template": "- ${{SUBJECT}}",
"empty_template": "No changes in this category"
}
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
poetry install --no-interaction --with dev
poetry install --no-interaction --with dev --extras inference
- name: Check formatting and imports with Ruff
continue-on-error: true # Won't fail the PR
Expand Down

0 comments on commit 798c175

Please sign in to comment.