Update GitHub workflows to use changed branch names

This commit is contained in:
Manuel Mayer
2026-06-06 14:13:31 +02:00
parent 0eb8fc4938
commit 9f014217d3
3 changed files with 6 additions and 6 deletions

View File

@@ -4,12 +4,12 @@ on:
workflow_call:
pull_request:
branches:
- 'production'
- 'main'
- 'develop'
push:
branches:
- '!production'
- '!main'
- '!develop'
jobs:
tests:

View File

@@ -32,9 +32,9 @@ jobs:
id: set_branch
run: |
if [[ "${{ steps.fetch_version.outputs.is-beta }}" == "true" ]]; then
echo "::set-output name=result::develop"
else
echo "::set-output name=result::main"
else
echo "::set-output name=result::production"
fi
bump-version:

View File

@@ -11,10 +11,10 @@ on:
description: 'Destination branch for the pull-request'
type: choice
options:
- develop
- main
- production
required: false
default: develop
default: main
jobs:
update-web-client: