Skip to content

Commit a65ce23

Browse files
authored
[DOCS] Adjust branch_pattern filter to avoid invalid regex when parsing branch names. (#175)
1 parent deaa418 commit a65ce23

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/post-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Post-Merge CI Pipeline
66

77
on: # yamllint disable-line rule:truthy
88
push:
9-
branches: ['main', 'release-[0-9]+.[0-9]+*']
9+
branches: ['main', 'release-[0-9]+.[0-9]+.*']
1010
workflow_dispatch:
1111

1212
permissions: {}

.github/workflows/pre-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Pre-Merge CI Pipeline
66

77
on: # yamllint disable-line rule:truthy
88
pull_request:
9-
branches: ['main', 'release-[0-9]+.[0-9]+*']
9+
branches: ['main', 'release-[0-9]+.[0-9]+.*']
1010
workflow_dispatch:
1111

1212
concurrency:

.github/workflows/publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: open-edge-platform/orch-ci/.github/workflows/publish-documentation.yml@a389c296f4a6dd2ff9d976007fd386950ab99605 # yamllint disable-line rule:line-length
1717
with:
1818
simple_mode: false
19-
branch_pattern: '^(main|release-[0-9]+\.[0-9]+*)$'
19+
branch_pattern: '^(main|release-[0-9]+\.[0-9]+.*)$'
2020
secrets:
2121
SYS_ORCH_GITHUB: ${{ secrets.SYS_ORCH_GITHUB }}
2222
DOC_AWS_ACCESS_KEY_ID: ${{ secrets.DOC_AWS_ACCESS_KEY_ID }}

0 commit comments

Comments
 (0)