From bf9a254f3927c0f261e189d7463a9b4d18bb117f Mon Sep 17 00:00:00 2001 From: Neeraj Joseph Koilparambil Date: Wed, 15 Nov 2023 11:48:23 +0000 Subject: [PATCH] ci(dry-run): fix dry run dry run was not being triggered in pull requests. This commit fixes this --- .github/workflows/build-and-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 75fe242..058fe2e 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -29,4 +29,4 @@ jobs: - name: Release Dry run env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: npx semantic-release --dry-run \ No newline at end of file + run: npx semantic-release --dry-run --no-ci \ No newline at end of file