Skip to content

Commit bb5f4c6

Browse files
authored
fix: allow ci to run on release branches (aws#2159)
Currently release/agentic/* branches used in our release process have rules that require CI to be run. However the corresponding workflows do not actually trigger for release branches. This change ensures no manual overrides are required in the release process and CI mapped with the branch actually runs.
1 parent d28df09 commit bb5f4c6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/lsp-ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Language Server CI
22
on:
33
push:
4-
branches: [main, dev, feature/*]
4+
branches: [main, dev, feature/*, release/agentic/*]
55
pull_request:
6-
branches: [main, dev, feature/*]
6+
branches: [main, dev, feature/*, release/agentic/*]
77

88
jobs:
99
test:

.github/workflows/npm-packaging.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: NPM Packaging
22
on:
33
push:
4-
branches: [main, dev, feature/*]
4+
branches: [main, dev, feature/*, release/agentic/*]
55
pull_request:
6-
branches: [main, dev, feature/*]
6+
branches: [main, dev, feature/*, release/agentic/*]
77

88
jobs:
99
build:

0 commit comments

Comments
 (0)