Skip to content

Commit bbfcdc4

Browse files
authored
ci: add feat/gateway-integration branch to workflow triggers (#376)
1 parent fe1283a commit bbfcdc4

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Build and Test
22

33
on:
44
push:
5-
branches: ['main']
5+
branches: ['main', 'feat/gateway-integration']
66
pull_request:
7-
branches: ['main']
7+
branches: ['main', 'feat/gateway-integration']
88

99
permissions:
1010
contents: read

.github/workflows/codeql.yml

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

33
on:
44
push:
5-
branches: ['main']
5+
branches: ['main', 'feat/gateway-integration']
66
pull_request:
7-
branches: ['main']
7+
branches: ['main', 'feat/gateway-integration']
88
pull_request_target:
9-
branches: ['main']
9+
branches: ['main', 'feat/gateway-integration']
1010

1111
# Cancel in-progress runs when a new commit is pushed
1212
concurrency:

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
description: 'AWS region for deployment'
77
default: 'us-east-1'
88
pull_request_target:
9-
branches: [main]
9+
branches: [main, feat/gateway-integration]
1010

1111
permissions:
1212
id-token: write # OIDC — lets GitHub assume an AWS IAM role via short-lived token (no stored keys)

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Quality and Safety Checks
22

33
on:
44
push:
5-
branches: ['main']
5+
branches: ['main', 'feat/gateway-integration']
66
pull_request:
7-
branches: ['main']
7+
branches: ['main', 'feat/gateway-integration']
88

99
permissions:
1010
contents: read

.github/workflows/pr-size.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: PR Size Check and Label
44
# Safe because this workflow only reads PR metadata — it never checks out untrusted code.
55
on:
66
pull_request_target:
7-
branches: [main]
7+
branches: [main, feat/gateway-integration]
88

99
jobs:
1010
label-size:

.github/workflows/pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Validate PR Title
22

33
on:
44
pull_request_target:
5-
branches: [main]
5+
branches: [main, feat/gateway-integration]
66
types: [opened, edited, synchronize, reopened]
77

88
jobs:

0 commit comments

Comments
 (0)