From d2b5cc3bc7de3fea714eec2debf451e94a8fc971 Mon Sep 17 00:00:00 2001 From: Alexander Aksenov Date: Fri, 02 Sep 2022 11:06:42 +0000 Subject: [PATCH] change format of trigger definition --- --- a/.github/workflows/ci-develop.yml +++ b/.github/workflows/ci-develop.yml @@ -2,13 +2,8 @@ on: pull_request: - branches: - - develop - types: - - opened - - reopened - - synchronize #commit(s) pushed to the pull request - - ready_for_review + branches: [ develop ] + types: [ opened, reopened, synchronize, ready_for_review ] concurrency: group: ${{ github.workflow }}-${{ github.head_ref }} --- a/.github/workflows/ci-master.yml +++ b/.github/workflows/ci-master.yml @@ -2,13 +2,8 @@ on: pull_request: - branches: - - master - types: - - opened - - reopened - - synchronize #commit(s) pushed to the pull request - - ready_for_review + branches: [ master ] + types: [ opened, reopened, synchronize, ready_for_review ] concurrency: group: ${{ github.workflow }}-${{ github.head_ref }} -- gitstuff