From c252a2f9d805cb7693fafbe134d5a615c0c1e2cd Mon Sep 17 00:00:00 2001 From: curt-park Date: Sat, 8 Nov 2025 15:20:43 +0900 Subject: [PATCH 1/2] fix: fetching release-please-manifest.json --- .release-please-manifest.json | 4 ++++ README.md | 1 + release-please-config.json | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .release-please-manifest.json diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..5fd4983 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,4 @@ +{ + ".": "0.0.1" +} + diff --git a/README.md b/README.md index ad72143..1aad411 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ python-project-template/ ├── .mise.toml # mise tool version manager configuration (Python and tool versions) ├── pyproject.toml # Project configuration and dependencies ├── release-please-config.json # Release Please configuration for automated version management +├── .release-please-manifest.json # Release Please manifest file (auto-managed by release-please) ├── Makefile # Development commands └── logging.conf # Logging configuration ``` diff --git a/release-please-config.json b/release-please-config.json index 8ae84dd..bd1639a 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -6,6 +6,6 @@ "version-file": "pyproject.toml" } }, - "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/refs/tags/v17.1.3/schemas/config.json" } From 66fd1ab2bd0e17436d135ec1022a1f78a0ac6cd0 Mon Sep 17 00:00:00 2001 From: curt-park Date: Sat, 8 Nov 2025 15:24:26 +0900 Subject: [PATCH 2/2] Limit the action runner for static, dynamic tests --- .github/workflows/run-static-tests.yml | 5 +++++ .github/workflows/run-unit-tests.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/run-static-tests.yml b/.github/workflows/run-static-tests.yml index d7734bf..2cb5df8 100644 --- a/.github/workflows/run-static-tests.yml +++ b/.github/workflows/run-static-tests.yml @@ -3,6 +3,11 @@ name: Static Tests for Python Scripts on: pull_request: branches: [ main ] + paths: + - '.github/workflows/run-static-tests.yml' + - 'pyproject.toml' + - 'src/**' + - 'tests/**' jobs: format: diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index e6b15ce..4f4ea39 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -3,6 +3,11 @@ name: Unit Tests for Python Scripts on: pull_request: branches: [ main ] + paths: + - '.github/workflows/run-unit-tests.yml' + - 'pyproject.toml' + - 'src/**' + - 'tests/**' jobs: unit-test: