Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
904464a
➕ Add a marker file for the typing feature for the Python project as …
Chisanan232 Oct 18, 2025
86767e4
➕ Add a new module as the Python module which defines the details of …
Chisanan232 Oct 18, 2025
cde42c6
➕ Add a new Python script for checking the typing definition of this …
Chisanan232 Oct 18, 2025
8335eb1
➕ Add an example code for the type definition usage.
Chisanan232 Oct 18, 2025
178a545
➕ Add a README for the type definition example usage.
Chisanan232 Oct 18, 2025
e6ea428
➕ Add a new CI workflow about checking the type definition of this Py…
Chisanan232 Oct 18, 2025
e1c6b11
➕ Add a sample script for Docker feature.
Chisanan232 Oct 18, 2025
c6343e6
➕ Add a sample Dockerfile for the Python project.
Chisanan232 Oct 18, 2025
2d79233
➕ Add a sample README for the Docker Hub.
Chisanan232 Oct 18, 2025
748891d
✏️ Change to reuse the release system from the repo *GitHub-Action_Re…
Chisanan232 Oct 18, 2025
79f5818
🚮 Remove the release system which be migrated to the reusable GitHub …
Chisanan232 Oct 18, 2025
f1ee92c
🚮 Remove the reusable workflow about parsing the release intent confi…
Chisanan232 Oct 18, 2025
34bd26c
🚮 Remove the reusable workflow about parsing the release intent confi…
Chisanan232 Oct 18, 2025
003a75a
🚮 Remove the reusable workflow about creating git tag and GitHub rele…
Chisanan232 Oct 18, 2025
4962965
🚮 Remove the reusable workflow about Python operation for release (in…
Chisanan232 Oct 18, 2025
f0e1ff0
🚮 Remove the reusable workflow about Docker operation for release (in…
Chisanan232 Oct 18, 2025
6ae461f
🚮 Remove the reusable workflow about document operation for release (…
Chisanan232 Oct 18, 2025
3d7b436
🚮 Remove the reusable action about setting up a Python runtime enviro…
Chisanan232 Oct 18, 2025
ae30d1d
🚮 Remove the deprecated Python scripts (be migrated to repo *GitHub-A…
Chisanan232 Oct 18, 2025
a82f671
🚮 Remove the deprecated scope of the GitHub dependency bot for the CI…
Chisanan232 Oct 18, 2025
77e8ec6
✏️ Change to reuse the reusable workflow in the repo *GitHub-Action_R…
Chisanan232 Oct 18, 2025
e19730f
⚙️ Resolve git conflict.
Chisanan232 Oct 19, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 0 additions & 67 deletions .github/actions/setup-python-uv/action.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,6 @@ updates:
commit-message:
prefix: ⬆

# Python (for CI scripts only)
- package-ecosystem: "uv"
directory: "/scripts"
schedule:
interval: "daily"
labels:
- "🔍 enhancement"
- "🐍 python"
- "dependencies"
commit-message:
prefix: ⬆

# Docusaurus (TSX)
- package-ecosystem: "npm"
directory: "/docs_with_docusarus"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# Call the centralized complete staging release workflow
staging:
name: Complete Staging Release Process
uses: Chisanan232/Template-Python-UV-Project/.github/workflows/rw_release_staging_complete.yaml@master
uses: Chisanan232/GitHub-Action_Reusable_Workflows-Python/.github/workflows/rw_release_staging_complete.yaml@master
with:
level: ${{ inputs.level }}
secrets:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
# Call the centralized complete validation workflow
validation:
name: Complete Release Validation Process
uses: Chisanan232/Template-Python-UV-Project/.github/workflows/rw_release_validation_complete.yaml@master
uses: Chisanan232/GitHub-Action_Reusable_Workflows-Python/.github/workflows/rw_release_validation_complete.yaml@master
with:
level: ${{ inputs.level }}
python: ${{ inputs.python }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
# Call the centralized complete release workflow
release:
name: Complete Release Process
uses: Chisanan232/Template-Python-UV-Project/.github/workflows/rw_release_complete.yaml@master
uses: Chisanan232/GitHub-Action_Reusable_Workflows-Python/.github/workflows/rw_release_complete.yaml@master
with:
level: ${{ inputs.level }}
python: ${{ inputs.python }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/rw_build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
(github.event_name == 'push' && github.ref_name == 'master')
}}
needs: run_unit-test
uses: Chisanan232/Template-Python-UV-Project/.github/workflows/rw_organize_test_cov_reports.yaml@master
uses: Chisanan232/GitHub-Action_Reusable_Workflows-Python/.github/workflows/rw_organize_test_cov_reports.yaml@master
with:
test_type: unit-test

Expand All @@ -86,7 +86,7 @@ jobs:
(github.event_name == 'push' && github.ref_name == 'master')
}}
needs: run_integration-test
uses: Chisanan232/Template-Python-UV-Project/.github/workflows/rw_organize_test_cov_reports.yaml@master
uses: Chisanan232/GitHub-Action_Reusable_Workflows-Python/.github/workflows/rw_organize_test_cov_reports.yaml@master
with:
test_type: integration-test

Expand All @@ -97,7 +97,7 @@ jobs:
(github.event_name == 'push' && github.ref_name == 'master')
}}
needs: run_e2e-test
uses: Chisanan232/Template-Python-UV-Project/.github/workflows/rw_organize_test_cov_reports.yaml@master
uses: Chisanan232/GitHub-Action_Reusable_Workflows-Python/.github/workflows/rw_organize_test_cov_reports.yaml@master
with:
test_type: e2e-test

Expand All @@ -108,7 +108,7 @@ jobs:
(github.event_name == 'push' && github.ref_name == 'master')
}}
needs: run_contract-test
uses: Chisanan232/Template-Python-UV-Project/.github/workflows/rw_organize_test_cov_reports.yaml@master
uses: Chisanan232/GitHub-Action_Reusable_Workflows-Python/.github/workflows/rw_organize_test_cov_reports.yaml@master
with:
test_type: contract-test

Expand All @@ -123,7 +123,7 @@ jobs:
}}
# needs: [run_unit-test, run_integration-test, run_contract-test]
needs: [run_unit-test, run_integration-test, run_contract-test]
uses: Chisanan232/Template-Python-UV-Project/.github/workflows/rw_organize_test_cov_reports.yaml@master
uses: Chisanan232/GitHub-Action_Reusable_Workflows-Python/.github/workflows/rw_organize_test_cov_reports.yaml@master
with:
test_type: all-test

Expand All @@ -138,6 +138,6 @@ jobs:
}}
# needs: [run_unit-test, run_integration-test, run_contract-test, run_e2e-test]
needs: [run_unit-test, run_integration-test, run_contract-test, run_e2e-test]
uses: Chisanan232/Template-Python-UV-Project/.github/workflows/rw_organize_test_cov_reports.yaml@master
uses: Chisanan232/GitHub-Action_Reusable_Workflows-Python/.github/workflows/rw_organize_test_cov_reports.yaml@master
with:
test_type: all-test
85 changes: 0 additions & 85 deletions .github/workflows/rw_build_git-tag_and_create_github-release.yaml

This file was deleted.

130 changes: 0 additions & 130 deletions .github/workflows/rw_build_git-tag_and_create_github-release_v2.yaml

This file was deleted.

Loading