From 839d20f9720a2ea82ea7f692b466bf323f4081aa Mon Sep 17 00:00:00 2001 From: Mike Kolesnik Date: Wed, 20 Oct 2021 17:11:17 +0300 Subject: [PATCH] Rename job so it won't shard on stable branches Right now auto release logic updates `devel` to the stable branch name when creating stable branches. This leads to this job "sharding" into multiple jobs, and messes up branch protections. To keep things simple, the main job name will remain the same so that there's no "PR targets X" and "PR targets Y" jobs, just the one "PR targets branch" job Signed-off-by: Mike Kolesnik --- .github/workflows/branch.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/branch.yml b/.github/workflows/branch.yml index c08bc1c..31e624e 100644 --- a/.github/workflows/branch.yml +++ b/.github/workflows/branch.yml @@ -5,8 +5,8 @@ on: pull_request: jobs: - target_devel: - name: PR targets devel + target_branch: + name: PR targets branch runs-on: ubuntu-latest steps: - name: Check that the PR targets devel