From 3d08935c646f6ff9e05ca5aa5bcef5f5a3f86081 Mon Sep 17 00:00:00 2001 From: sdarwin Date: Wed, 11 Dec 2024 09:08:08 -0700 Subject: [PATCH] Commitbot features --- .github/workflows/commit-bot.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/commit-bot.yml b/.github/workflows/commit-bot.yml index cea574c3aa1d..22221fcc4ab3 100644 --- a/.github/workflows/commit-bot.yml +++ b/.github/workflows/commit-bot.yml @@ -8,7 +8,7 @@ name: Commit Bot # "If an action pushes code using the repository's GITHUB_TOKEN, a new workflow will not run" # # - Processing of either the 'master' or 'develop' branch may be stopped by creating the variables -# vars.block_master or vars.block_develop with any value. +# vars.block_master or vars.block_develop with the value "yes". # https://github.com/boostorg/boost/settings/variables/actions # @@ -34,19 +34,19 @@ jobs: set -xe branches="" if [[ "${{ github.event_name }}" == "push" ]]; then - if [[ ! -n "${{ vars.block_master }}" && "${{ github.ref_name }}" == "master" ]]; then + if [[ ! "${{ vars.block_master }}" == "yes" && "${{ github.ref_name }}" == "master" ]]; then branches="master" - elif [[ ! -n "${{ vars.block_develop }}" && "${{ github.ref_name }}" == "develop" ]]; then + elif [[ ! "${{ vars.block_develop }}" == "yes" && "${{ github.ref_name }}" == "develop" ]]; then branches="develop" else branches="${{ github.ref_name }}" fi else # from a schedule: - if [[ ! -n "${{ vars.block_master }}" ]]; then + if [[ ! "${{ vars.block_master }}" == "yes" ]]; then branches="master" fi - if [[ ! -n "${{ vars.block_develop }}" ]]; then + if [[ ! "${{ vars.block_develop }}" == "yes" ]]; then branches="${branches} develop" fi fi