From 5ab2859c2d33c173bdd67574f0dda5baa1db05de Mon Sep 17 00:00:00 2001 From: Alexander Aksenov Date: Fri, 02 Sep 2022 11:16:20 +0000 Subject: [PATCH] escaping branch name --- --- a/.github/workflows/ci-develop.yml +++ b/.github/workflows/ci-develop.yml @@ -2,7 +2,7 @@ on: pull_request: - branches: [ develop ] + branches: [ 'develop' ] types: [ opened, reopened, synchronize, ready_for_review ] concurrency: --- a/.github/workflows/ci-master.yml +++ b/.github/workflows/ci-master.yml @@ -2,7 +2,7 @@ on: pull_request: - branches: [ master ] + branches: [ 'master' ] types: [ opened, reopened, synchronize, ready_for_review ] concurrency: -- gitstuff