Skip to content

Commit 36134d7

Browse files
committed
QAG-65: fix: Correct YAML anchor definition in CircleCI config
- Fixed the ignored-branches YAML anchor definition to properly use named anchor - Resolved YAML lint error with properly structured branch-filters section Refs: .circleci/config.yml
1 parent 1931e7d commit 36134d7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.circleci/config.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ executors:
1212

1313
# Define shared branch filters as reusable anchors.
1414
branch-filters:
15-
&ignored-branches
16-
branches:
17-
ignore:
18-
- production
19-
- main
20-
- /dependabot\/.*/
21-
# Remove the following filters from actual project configuration.
22-
- /^10\..*/
23-
- /^11\..*/
15+
ignored-branches: &ignored-branches
16+
branches:
17+
ignore:
18+
- production
19+
- main
20+
- /dependabot\/.*/
21+
# Remove the following filters from actual project configuration.
22+
- /^10\..*/
23+
- /^11\..*/
2424

2525
workflows:
2626
commit:

0 commit comments

Comments
 (0)