Skip to content

Commit

Permalink
ci: Enable CI on release branch (#5129)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-innis committed Nov 22, 2023
1 parent a0dbc9c commit 8c379aa
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci-test.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: CI-TEST
on:
push:
branches: [main]
branches:
- 'main'
- 'release-v*'
pull_request:
workflow_dispatch:
jobs:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: CI
on:
push:
branches: [main]
branches:
- 'main'
- 'release-v*'
pull_request:
workflow_dispatch:
jobs:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: "CodeQL"

on:
push:
branches: [ main ]
branches:
- 'main'
- 'release-v*'
schedule:
- cron: '0 12 * * *'

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/docgen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: DocGenCI

on:
push:
branches: [main]
branches:
- 'main'
- 'release-v*'

permissions:
id-token: write # aws-actions/[email protected]
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/e2e-matrix-trigger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ on:
schedule:
- cron: '7 */8 * * *'
push:
branches: [main]
branches:
- 'main'
- 'release-v*'
workflow_run:
workflows: [ApprovalComment]
types: [completed]
workflows:
- ApprovalComment
types:
- completed
workflow_dispatch:
inputs:
region:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish-test-tools.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: PublishTestTools
on:
push:
branches: [ main ]
branches:
- 'main'
- 'release-v*'
paths:
- test/Dockerfile
- test/push-docker.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/snapshot.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Snapshot
on:
push:
branches: [ main ]
branches:
- 'main'
- 'release-v*'
permissions:
id-token: write # aws-actions/[email protected]
jobs:
Expand Down

0 comments on commit 8c379aa

Please sign in to comment.