From 139d84204cb29aa6096151baeaea3ab7f79bc89a Mon Sep 17 00:00:00 2001 From: Thomas Harrison Date: Fri, 26 Jun 2026 22:32:01 -0400 Subject: [PATCH 1/2] Add check job --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 556f7db..d86cc19 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,3 +72,16 @@ jobs: permissions: contents: write + + check: + runs-on: ubuntu-latest + if: always() + + needs: [test, lint, increment_version] + + timeout-minutes: 1 + + steps: + - uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }} From 0e3ddf9dcf310e7090eab4c4f5a4f0ce2d22f2f5 Mon Sep 17 00:00:00 2001 From: Thomas Harrison Date: Fri, 26 Jun 2026 22:35:41 -0400 Subject: [PATCH 2/2] Update increment version --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d86cc19..6945409 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,8 +65,9 @@ jobs: increment_version: name: Increment Version uses: automas-dev/reusable-workflows/.github/workflows/increment_version.yml@v1.1 - if: github.ref == 'refs/heads/main' secrets: inherit + with: + dry-run: ${{ github.ref != 'refs/heads/main' }} needs: [test, lint]