Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ name: Build and Test

on:
push:
branches: ['main', 'feat/gateway-integration']
branches: ['main']
pull_request:
branches: ['main', 'feat/gateway-integration']
branches: ['main']

permissions:
contents: read

# Cancel in-progress runs when a new commit is pushed
# Cancel in-progress runs for PRs; never cancel runs on main (merges should not abort each other)
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
build:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: CodeQL

on:
push:
branches: ['main', 'feat/gateway-integration']
branches: ['main']
pull_request:
branches: ['main', 'feat/gateway-integration']
branches: ['main']
pull_request_target:
branches: ['main', 'feat/gateway-integration']
branches: ['main']

# Cancel in-progress runs when a new commit is pushed
# Cancel in-progress runs for PRs; never cancel runs on main (merges should not abort each other)
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
analyze:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
description: 'AWS region for deployment'
default: 'us-east-1'
pull_request_target:
branches: [main, feat/gateway-integration]
branches: [main]

concurrency:
group: e2e-${{ github.event.pull_request.number || github.ref }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ name: Quality and Safety Checks

on:
push:
branches: ['main', 'feat/gateway-integration']
branches: ['main']
pull_request:
branches: ['main', 'feat/gateway-integration']
branches: ['main']

permissions:
contents: read

# Cancel in-progress runs when a new commit is pushed
# Cancel in-progress runs for PRs; never cancel runs on main (merges should not abort each other)
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
setup:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: PR Size Check and Label
# Safe because this workflow only reads PR metadata — it never checks out untrusted code.
on:
pull_request_target:
branches: [main, feat/gateway-integration]
branches: [main]

jobs:
label-size:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Validate PR Title

on:
pull_request_target:
branches: [main, feat/gateway-integration]
branches: [main]
types: [opened, edited, synchronize, reopened]

permissions:
Expand Down
Loading