Skip to content

Commit d836540

Browse files
committed
🚀 fix(workflows): standardize branch patterns in call-auto-merge and call-ci-semantic-release-sync workflows
1 parent d62ed2b commit d836540

2 files changed

Lines changed: 47 additions & 19 deletions

File tree

‎.github/workflows/call-auto-merge.yml‎

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,34 @@ env:
77

88
on:
99
workflow_dispatch:
10+
1011
push:
1112
branches:
1213
- main
1314
- stage
14-
- feature/**
15-
- bugfix/**
16-
- fix/**
17-
- hotfix/**
18-
- release/**
19-
- dependabot/**
20-
- renovate/**
21-
- chore/**
22-
- test/**
15+
- 'feature/**'
16+
- 'bugfix/**'
17+
- 'fix/**'
18+
- 'hotfix/**'
19+
- 'release/**'
20+
- 'dependabot/**'
21+
- 'renovate/**'
22+
- 'chore/**'
23+
- 'test/**'
24+
pull_request:
25+
types: [labeled, synchronize, opened, reopened, ready_for_review]
26+
branches:
27+
- main
28+
- stage
29+
- 'feature/**'
30+
- 'bugfix/**'
31+
- 'fix/**'
32+
- 'hotfix/**'
33+
- 'release/**'
34+
- 'dependabot/**'
35+
- 'renovate/**'
36+
- 'chore/**'
37+
- 'test/**'
2338

2439
jobs:
2540
call-auto-merge:

‎.github/workflows/call-ci-semantic-release-sync.yml‎

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,35 @@ env:
44
RUN_TEST: 0
55
RUN_BUILD: 0
66
RUN_LINT: 0
7-
7+
88
on:
99
workflow_dispatch:
1010
push:
1111
branches:
1212
- main
1313
- stage
14-
- feature/**
15-
- bugfix/**
16-
- fix/**
17-
- hotfix/**
18-
- release/**
19-
- dependabot/**
20-
- renovate/**
21-
- chore/**
22-
- test/**
14+
- 'feature/**'
15+
- 'bugfix/**'
16+
- 'fix/**'
17+
- 'hotfix/**'
18+
- 'release/**'
19+
- 'dependabot/**'
20+
- 'renovate/**'
21+
- 'chore/**'
22+
- 'test/**'
23+
pull_request:
24+
branches:
25+
- main
26+
- stage
27+
- 'feature/**'
28+
- 'bugfix/**'
29+
- 'fix/**'
30+
- 'hotfix/**'
31+
- 'release/**'
32+
- 'dependabot/**'
33+
- 'renovate/**'
34+
- 'chore/**'
35+
- 'test/**'
2336

2437
jobs:
2538
call-ci-release-sync:

0 commit comments

Comments
 (0)