From ceefad4c903925848292f02c2bff0fa7be471672 Mon Sep 17 00:00:00 2001 From: Jakub Kocka Date: Wed, 8 Oct 2025 11:06:27 +0200 Subject: [PATCH 1/3] fix: Added requirements for the README update workflow --- .github/workflows/update-python-versions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-python-versions.yml b/.github/workflows/update-python-versions.yml index 1462ef9..79d795d 100644 --- a/.github/workflows/update-python-versions.yml +++ b/.github/workflows/update-python-versions.yml @@ -28,7 +28,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install requests python-dateutil colorama + python -m pip install requests python-dateutil colorama packaging - name: Generate supported versions id: generate From d1337001367a831bbf93c9af33bf77dee1f91b62 Mon Sep 17 00:00:00 2001 From: Jakub Kocka Date: Wed, 8 Oct 2025 11:27:54 +0200 Subject: [PATCH 2/3] fix: Added fixes for the commit messages of the automated workflows --- .github/workflows/update-python-versions.yml | 2 +- .pre-commit-config.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-python-versions.yml b/.github/workflows/update-python-versions.yml index 79d795d..046c565 100644 --- a/.github/workflows/update-python-versions.yml +++ b/.github/workflows/update-python-versions.yml @@ -60,7 +60,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: | - Update README and pyproject.toml with current supported Python versions + docs: Updated README and pyproject.toml with current supported Python versions Auto-updated by update-readme workflow based on current ESP-IDF and Python support lifecycle. diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 23d101e..fa8ac3d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ default_install_hook_types: [pre-commit, commit-msg] ci: autofix_commit_msg: | - Apply automatic fixes from pre-commit hooks + fix: Apply automatic fixes from pre-commit hooks autofix_prs: true autoupdate_commit_msg: 'ci: Bump pre-commit hooks' autoupdate_schedule: quarterly From cf9280cf3880241a6517e5a22d1471bfbbfaee03 Mon Sep 17 00:00:00 2001 From: Jakub Kocka Date: Wed, 8 Oct 2025 14:20:11 +0200 Subject: [PATCH 3/3] feat: Added .gitignore mainly for automatic PRs --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..273ec4e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +__pycache__/ +supported_versions.json