From 3ef46b7f880cf28df3523c0bfc5e42fcf26de9fe Mon Sep 17 00:00:00 2001 From: Bekir Oguz Date: Mon, 20 Jan 2025 14:08:07 +0100 Subject: [PATCH] run CI only for pull requests and pushes to master branch. (#1826) --- .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 e98640ef2..e7aea0bae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,8 @@ name: CI on: + workflow_dispatch: push: - branches: ["**"] + branches: ["master"] tags: ["v*"] pull_request: branches: ["master"]