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
5 changes: 5 additions & 0 deletions .github/workflows/android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
- main
- experimental/*
- feature/*
merge_group:
branches:
- main
- experimental/*
- feature/*
push:
branches:
- main
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/evergreen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ on:
- main
- experimental/*
- feature/*
merge_group:
branches:
- main
- experimental/*
- feature/*
push:
branches:
- main
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
branches:
- main
- feature/*
merge_group:
branches:
- main
- feature/*
push:
branches:
- main
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
- main
- experimental/*
- feature/*
merge_group:
branches:
- main
- experimental/*
- feature/*
push:
branches:
- main
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ jobs:
if: |
needs.initialize.outputs.test_on_device == 'true' &&
(
(github.event_name == 'pull_request' && github.event.pull_request.draft == false ) ||
((github.event_name == 'pull_request' && github.event.pull_request.draft == false) || github.event_name == 'merge_group') ||
((inputs.nightly == 'true' || github.event_name == 'schedule') && vars.RUN_ODT_TESTS_ON_NIGHTLY != 'False') ||
(github.event_name == 'push' && vars.RUN_ODT_TESTS_ON_POSTSUBMIT != 'False')
)
Expand Down Expand Up @@ -543,7 +543,7 @@ jobs:
if: |
needs.initialize.outputs.test_e2e == 'true' &&
(
(github.event_name == 'pull_request' && github.event.pull_request.draft == false ) ||
((github.event_name == 'pull_request' && github.event.pull_request.draft == false) || github.event_name == 'merge_group') ||
((inputs.nightly == 'true' || github.event_name == 'schedule') && vars.RUN_ODT_TESTS_ON_NIGHTLY != 'False') ||
(github.event_name == 'push' && vars.RUN_ODT_TESTS_ON_POSTSUBMIT != 'False')
)
Expand Down Expand Up @@ -578,7 +578,7 @@ jobs:
if: |
needs.initialize.outputs.test_yts == 'true' &&
(
(github.event_name == 'pull_request' && github.event.pull_request.draft == false ) ||
((github.event_name == 'pull_request' && github.event.pull_request.draft == false) || github.event_name == 'merge_group') ||
((inputs.nightly == 'true' || github.event_name == 'schedule') && vars.RUN_ODT_TESTS_ON_NIGHTLY != 'False') ||
(github.event_name == 'push' && vars.RUN_ODT_TESTS_ON_POSTSUBMIT != 'False')
)
Expand Down Expand Up @@ -640,7 +640,7 @@ jobs:
needs.initialize.outputs.run_browser_tests == 'true' &&
needs.initialize.outputs.test_on_host == 'true' &&
(
(github.event_name == 'pull_request' && github.event.pull_request.draft == false ) ||
((github.event_name == 'pull_request' && github.event.pull_request.draft == false) || github.event_name == 'merge_group') ||
((inputs.nightly == 'true' || github.event_name == 'schedule') && vars.RUN_ODT_TESTS_ON_NIGHTLY != 'False') ||
(github.event_name == 'push' && vars.RUN_ODT_TESTS_ON_POSTSUBMIT != 'False')
)
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/raspi-2-modular.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ on:
- main
- experimental/*
- feature/*
merge_group:
branches:
- main
- experimental/*
- feature/*
push:
branches:
- main
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/tvos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
pull_request:
branches:
- main
merge_group:
branches:
- main
push:
branches:
- main
Expand Down
2 changes: 1 addition & 1 deletion cobalt/BUILD_STATUS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 🏗️ Build Status

## Main
## Main test

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The header ## Main test is ambiguous and seems out of place for a build status document. This may be a temporary change committed by mistake. For clarity, headers should be descriptive. If this section refers to the main branch, the previous title ## Main is more appropriate.

Suggested change
## Main test
## Main


| Platform | Build Status | Nightly Build |
| :-------------| :----------------------------------------| :--------------------------------------------------------|
Expand Down
Loading