From fedd972725241b447ec99e994a8639d632a8e66a Mon Sep 17 00:00:00 2001 From: "David L. Day" Date: Sun, 20 Jul 2025 16:03:12 -0400 Subject: [PATCH] ci: use explicit dry run instead of reusable workflow --- .github/workflows/python-ci.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 9128fce..a057026 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -33,6 +33,15 @@ jobs: cz-dry-run: needs: test - uses: prosegrinder/.github/.github/workflows/poetry-cz-dry-run.yaml@main - secrets: - VERSION_BUMP_TAG_TOKEN: "${{ secrets.VERSION_BUMP_TAG_TOKEN }}" + name: "Dry run Commitizen bump" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Create bump and changelog + uses: commitizen-tools/commitizen-action@0.20.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + check_consistency: true + dry_run: true