From 484b6fdbaaeda444f6e2377886b68eacf5a98e0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Wed, 8 Oct 2025 10:05:30 -0700 Subject: [PATCH 1/2] Allow running mirror manually MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bernát Gábor --- .github/workflows/main.yaml | 1 + .pre-commit-config.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 1c77cd2..71ca3bf 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -2,6 +2,7 @@ name: Mirror on: push: branches: [main] + workflow_dispatch: pull_request: schedule: - cron: "30 8 * * *" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index cd7e75d..26de91f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -13,7 +13,7 @@ repos: rev: v2.4.1 hooks: - id: codespell - additional_dependencies: ["tomli>=2.0.1"] + additional_dependencies: ["tomli>=2.2.1"] - repo: https://github.com/rbubley/mirrors-prettier rev: "v3.6.2" hooks: From e7ca4d18d7ce6a3196f0ba99c54877c68fadbd28 Mon Sep 17 00:00:00 2001 From: Github Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Oct 2025 17:07:25 +0000 Subject: [PATCH 2/2] Mirror: 2.8.0 --- .pre-commit-hooks.yaml | 20 ++++++++++---------- .version | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index cbc2f08..ff2fb7c 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -1,10 +1,10 @@ -- id: pyproject-fmt - name: pyproject-fmt - description: "" - entry: pyproject-fmt - language: python - "files": (^|/)pyproject\.toml$ - args: [] - require_serial: false - additional_dependencies: [] - minimum_pre_commit_version: "0" +- id: pyproject-fmt + name: pyproject-fmt + description: '' + entry: pyproject-fmt + language: python + 'files': (^|/)pyproject\.toml$ + args: [] + require_serial: false + additional_dependencies: [] + minimum_pre_commit_version: '0' diff --git a/.version b/.version index 24ba9a3..834f262 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -2.7.0 +2.8.0 diff --git a/setup.py b/setup.py index 2293c32..d8253c3 100644 --- a/setup.py +++ b/setup.py @@ -6,5 +6,5 @@ setup( name='pre_commit_placeholder_package', version='0.0.0', - install_requires=['pyproject-fmt==2.7.0'], + install_requires=['pyproject-fmt==2.8.0'], )