Skip to content

Commit 81a9072

Browse files
chore(ci): Update workflows to target main branch only
- Remove aot_monorepo_compat from workflow triggers - Simplify branch targeting for all CI/CD workflows - Maintain workflow_dispatch for manual triggers WORKFLOWS UPDATED: - dart.yml: CI runs on main branch only - enhance-release-pr.yml: Enhance PRs to main only - release-please.yml: Release automation on main only REASON: - Aligns with standard git workflow (feature branches → main) - aot_monorepo_compat will merge to main via PR #8 - Reduces workflow complexity and CI noise
1 parent e9d5789 commit 81a9072

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/dart.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: Dart
22

33
on:
4-
# Run CI on pushes to main/aot_monorepo_compat, and on PRs against them.
4+
# Run CI on pushes to main and on PRs against main.
55
push:
6-
branches: [main, aot_monorepo_compat]
6+
branches: [main]
77
pull_request:
8-
branches: [main, aot_monorepo_compat]
8+
branches: [main]
99
workflow_dispatch:
1010

1111
# Cancel in-progress runs when new commits are pushed

.github/workflows/enhance-release-pr.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
types: [opened, synchronize, reopened]
66
branches:
77
- main
8-
- aot_monorepo_compat
98

109
# Cancel in-progress runs when a new commit is pushed to the same PR
1110
concurrency:

.github/workflows/release-please.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ on:
1919
push:
2020
branches:
2121
- main
22-
- aot_monorepo_compat
2322

2423
# Only one Release Please run per branch at a time
2524
concurrency:

0 commit comments

Comments
 (0)