Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0bcf0200ab | ||
| 6dff0e0cfc | |||
|
474d92e180
|
|||
|
|
d00135b00c | ||
| 3dfaf8d74d | |||
|
73d406e18d
|
|||
|
|
b4b4aadb65 | ||
| b6af2370bb | |||
|
6fdfdbee31
|
|||
|
|
5c11d34c84 | ||
| 06e714b23b | |||
|
dd97c0d68a
|
|||
|
|
ec5a4f175a | ||
| a94cde06ac | |||
|
a0154f345c
|
|||
|
|
794b1ff5e1 | ||
| fc70ae2bdc | |||
|
6598e30a42
|
|||
|
b07928c8af
|
@@ -2,16 +2,57 @@
|
|||||||
"categories": [
|
"categories": [
|
||||||
{
|
{
|
||||||
"title": "## 🚀 Features",
|
"title": "## 🚀 Features",
|
||||||
"labels": ["add","Add"]
|
"labels": [
|
||||||
|
"add",
|
||||||
|
"Add",
|
||||||
|
"Kind/Feature"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title": "## 🐛 Fixes",
|
"title": "## 🐛 Fixes",
|
||||||
"labels": ["fix","Fix"]
|
"labels": [
|
||||||
|
"fix",
|
||||||
|
"Fix",
|
||||||
|
"Kind/Bug"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title": "## 🧪 Upgrade",
|
"title": "## 🧪 Upgrade",
|
||||||
"labels": ["upgrade","Upgrade","Clean"]
|
"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": [
|
"label_extractor": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,10 +1,6 @@
|
|||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
release_notes:
|
|
||||||
description: Release notes (use \n for newlines)
|
|
||||||
type: string
|
|
||||||
required: false
|
|
||||||
github_release:
|
github_release:
|
||||||
description: 'Create Gitea Release'
|
description: 'Create Gitea Release'
|
||||||
default: true
|
default: true
|
||||||
@@ -28,6 +24,9 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0 # Fetch full history
|
||||||
|
fetch-tags: true # Fetch all tags (refs/tags)
|
||||||
|
|
||||||
- name: Install uv
|
- name: Install uv
|
||||||
uses: astral-sh/setup-uv@v5
|
uses: astral-sh/setup-uv@v5
|
||||||
@@ -65,10 +64,10 @@ jobs:
|
|||||||
id: build_changelog
|
id: build_changelog
|
||||||
uses: https://github.com/mikepenz/release-changelog-builder-action@v5
|
uses: https://github.com/mikepenz/release-changelog-builder-action@v5
|
||||||
with:
|
with:
|
||||||
mode: "COMMIT"
|
|
||||||
platform: "gitea"
|
platform: "gitea"
|
||||||
baseURL: "http://gitea:3000"
|
baseURL: "http://gitea:3000"
|
||||||
configuration: ".gitea/changelog-config.json"
|
# configuration: ".gitea/changelog-config.json"
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
||||||
|
|
||||||
|
|||||||
1
hello.py
1
hello.py
@@ -6,7 +6,6 @@ def main():
|
|||||||
def get_version():
|
def get_version():
|
||||||
with open(".version") as f:
|
with open(".version") as f:
|
||||||
return f.read().strip()
|
return f.read().strip()
|
||||||
print("Version file not found. Returning default version '0.0.0'.")
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "workflowbumptester"
|
name = "workflowbumptester"
|
||||||
version = "1.0.1"
|
version = "1.0.7"
|
||||||
description = "Add your description here"
|
description = "Add your description here"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.13"
|
requires-python = ">=3.13"
|
||||||
@@ -10,7 +10,7 @@ dependencies = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[tool.bumpversion]
|
[tool.bumpversion]
|
||||||
current_version = "1.0.1"
|
current_version = "1.0.7"
|
||||||
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
||||||
serialize = ["{major}.{minor}.{patch}"]
|
serialize = ["{major}.{minor}.{patch}"]
|
||||||
search = "{current_version}"
|
search = "{current_version}"
|
||||||
|
|||||||
Reference in New Issue
Block a user