Skip to content

Commit

Permalink
chore(ci): run CI jobs on release branches (#8680)
Browse files Browse the repository at this point in the history
Currently we only run CI on our main branch. We would like to run CI
when changes are being considered on the release branches.
  • Loading branch information
joshua-goldstein authored Feb 17, 2023
1 parent a8558ab commit a39897e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci-aqua-security-trivy-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- 'release/**'
pull_request:
types:
- opened
Expand All @@ -11,6 +12,7 @@ on:
- ready_for_review
branches:
- main
- 'release/**'
schedule:
- cron: "0 * * * *"
jobs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-dgraph-code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- 'release/**'
pull_request:
types:
- opened
Expand All @@ -11,6 +12,7 @@ on:
- ready_for_review
branches:
- main
- 'release/**'
schedule:
- cron: "0 0 * * *" # 1-run per day
jobs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-dgraph-ldbc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- 'release/**'
pull_request:
types:
- opened
Expand All @@ -11,6 +12,7 @@ on:
- ready_for_review
branches:
- main
- 'release/**'
schedule:
- cron: "0 0 * * *" # 1-run per day
jobs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-dgraph-load-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- 'release/**'
pull_request:
types:
- opened
Expand All @@ -11,6 +12,7 @@ on:
- ready_for_review
branches:
- main
- 'release/**'
schedule:
- cron: "0 0,12 * * *" # 2-runs per day
jobs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-dgraph-tests-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- 'release/**'
pull_request:
types:
- opened
Expand All @@ -11,6 +12,7 @@ on:
- ready_for_review
branches:
- main
- 'release/**'
schedule:
- cron: "0 0,12 * * *" # 2-runs per day
jobs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-dgraph-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- 'release/**'
pull_request:
types:
- opened
Expand All @@ -11,6 +12,7 @@ on:
- ready_for_review
branches:
- main
- 'release/**'
schedule:
- cron: "0 0,12 * * *" # 2-runs per day
jobs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-golang-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- 'release/**'
pull_request:
types:
- opened
Expand All @@ -11,6 +12,7 @@ on:
- ready_for_review
branches:
- main
- 'release/**'
schedule:
- cron: "0 * * * *"
jobs:
Expand Down

0 comments on commit a39897e

Please sign in to comment.