From 8275e1978692cf89d76e250701c506caae883382 Mon Sep 17 00:00:00 2001 From: Matias Leyba Date: Wed, 13 Aug 2025 12:44:48 -0300 Subject: [PATCH 1/2] fix: release workflow trigger - having only negative patterns blocks the workflow to run --- .github/workflows/release_please.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release_please.yaml b/.github/workflows/release_please.yaml index a3f2fa6f6..92b94b973 100644 --- a/.github/workflows/release_please.yaml +++ b/.github/workflows/release_please.yaml @@ -10,6 +10,7 @@ on: branches: - main paths: + - "**" - "!.github/workflows/site.yaml" - "!site/**" @@ -22,4 +23,4 @@ jobs: with: token: ${{ secrets.RELEASE_PLEASE_TOKEN }} manifest-file: ".release-please-manifest.json" - config-file: ".release-please-config.json" \ No newline at end of file + config-file: ".release-please-config.json" From ea654c6c230f567b2a07bb5d56390f1cb2a40942 Mon Sep 17 00:00:00 2001 From: matiasleyba Date: Wed, 13 Aug 2025 13:36:50 -0300 Subject: [PATCH 2/2] fix: add release plase to main workflow --- .github/workflows/very_good_cli.yaml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/very_good_cli.yaml b/.github/workflows/very_good_cli.yaml index cf16acf61..bb9325359 100644 --- a/.github/workflows/very_good_cli.yaml +++ b/.github/workflows/very_good_cli.yaml @@ -2,21 +2,11 @@ name: very_good_cli on: pull_request: - paths: - - ".github/workflows/very_good_cli.yaml" - - "lib/**" - - "test/**" - - "pubspec.yaml" - - ".release-please-config.json" + branches: + - main push: branches: - main - paths: - - ".github/workflows/very_good_cli.yaml" - - "lib/**" - - "test/**" - - "pubspec.yaml" - - ".release-please-config.json" jobs: build: