4 Commits
v1.0.7 ... dev

Author SHA1 Message Date
d2bcb57d53 fix typo 2025-05-29 12:41:42 +02:00
7bacf6deb6 tell changelog to use feature label 2025-05-29 12:41:06 +02:00
9c5e4d0510 test 2025-05-29 12:31:06 +02:00
bf687305ef re-enable changelog 2025-05-29 12:26:25 +02:00
3 changed files with 3 additions and 36 deletions

View File

@@ -12,47 +12,13 @@
"title": "## 🐛 Fixes",
"labels": [
"fix",
"Fix",
"Kind/Bug"
"Fix"
]
},
{
"title": "## 🧪 Upgrade",
"labels": ["upgrade","Upgrade","Clean"]
}
,
{
"title": "## 📝 Documentation",
"labels": [
"docs",
"Docs",
"Kind/Documentation"
]
},
{
"title": "## 🧹 Chore",
"labels": [
"chore",
"Chore",
"Kind/Chore"
]
},
{
"title": "## 🛠️ Maintenance",
"labels": [
"maintenance",
"Maintenance",
"Kind/Maintenance"
]
},
{
"title": "## 🗑️ Deprecation",
"labels": [
"deprecation",
"Deprecation",
"Kind/Deprecation"
]
}
],
"label_extractor": [
{

View File

@@ -67,7 +67,7 @@ jobs:
platform: "gitea"
baseURL: "http://gitea:3000"
# configuration: ".gitea/changelog-config.json"
configuration: ".gitea/changelog-config.json"
env:
GITHUB_TOKEN: ${{ secrets.GITEA_TOKEN }}

View File

@@ -6,6 +6,7 @@ def main():
def get_version():
with open(".version") as f:
return f.read().strip()
print("Done")
if __name__ == "__main__":
main()