From ef4031f02793ef37c2adf3834a8d9ca8c4acfad5 Mon Sep 17 00:00:00 2001 From: Vasiliy Vasilyuk Date: Wed, 15 Nov 2023 22:16:46 +0300 Subject: [PATCH] Allow running pipelines without merge request This will allow me to pass CI checks without creating merge requests, since I work alone there is no point in them. --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 1ec614c..5b6fb81 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -2,7 +2,7 @@ name: Go on: push: - branches: [ "main" ] + branches: pull_request: branches: [ "main" ]