From 21bd30a02bf8321ad232290076681d3066cf2767 Mon Sep 17 00:00:00 2001 From: Adrian Wannenmacher Date: Thu, 19 Oct 2023 11:53:36 +0200 Subject: [PATCH] filter out PRs in CI 2 --- .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 556875b..6a4e925 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: - name: Adjust compiler output run: mv ../ci-out/_tree-owners ../ci-out/tree-owners.zsh - uses: "marvinpinto/action-automatic-releases@latest" - if: ${{ github.event_name = "push" }} + if: ${{ github.event_name == "push" }} with: repo_token: "${{ secrets.GITHUB_TOKEN }}" automatic_release_tag: "latest"