From 7151bff32d7ea459732458012bdd3ab0c47b1cb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julia=20Lo=CC=81pez?= Date: Mon, 27 Jul 2026 13:31:52 +0200 Subject: [PATCH 1/2] Run CI on pull requests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Test workflow only triggered on `push`, so pull requests from forks never ran any checks — the push event fires on the fork, not here. PR #31 sat with zero status checks for this reason. Switch to the push+pull_request trigger already used by every other RubyMoney repo, and add the matching read-only permissions block. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/test.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aaa9566..9398438 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,13 @@ name: Test -on: [push] +on: + push: + branches: [main] + pull_request: + branches: [main] + +permissions: + contents: read jobs: test: From 1c8ab49aca276e4be5c45c5eedef4ab2ba5641e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julia=20Lo=CC=81pez?= Date: Mon, 27 Jul 2026 13:32:18 +0200 Subject: [PATCH 2/2] Bump actions/checkout to v7 Was pinned at v3. v7.0.1 is the current release; the rest of the RubyMoney repos are still on v6. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9398438..04339f8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v7 - name: Set up Ruby uses: ruby/setup-ruby@v1