Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pr-branch-target-gitflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_call:
jobs:
pr-branch-confirmation:
name: "Confirm that target branch for PR is development or build/"
name: "Confirm that target branch for PR is main or build/"
runs-on: ubuntu-latest
steps:
- name: "echo PR target branch"
Expand All @@ -12,7 +12,7 @@ jobs:
- name: "Set PR target branch validity"
id: is-valid
if: >
startsWith(github.event.pull_request.base.ref, 'development')||
startsWith(github.event.pull_request.base.ref, 'main')||
startsWith(github.event.pull_request.base.ref, 'chore/dependabot') ||
startsWith(github.event.pull_request.base.ref, 'build/')
run: |
Expand Down