Skip to content

Commit

Permalink
Try #537:
Browse files Browse the repository at this point in the history
  • Loading branch information
zeebe-bors-camunda[bot] authored Oct 13, 2022
2 parents 26d99f6 + b577b16 commit 7a78583
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Build and test
on:
pull_request: { }
push:
branches:
- 'staging'
workflow_call: { }
jobs:
code-formatting:
Expand Down Expand Up @@ -118,6 +121,18 @@ jobs:
path: "*/target/surefire-reports/"
retention-days: 7

test-summary:
# Used by bors to check all tests, including the unit test matrix.
# New test jobs must be added to the `needs` lists!
# This name is hard-referenced from bors.toml; remember to update that if this name changes
name: Test summary
runs-on: ubuntu-latest
needs:
- code-formatting
- build-and-test-embedded
- build-and-test-testcontainers
steps:
- run: exit 0

# We need to upload the event file as an artifact in order to support publishing the results of
# forked repositories (https://github.com/EnricoMi/publish-unit-test-result-action#support-fork-repositories-and-dependabot-branches)
Expand Down
9 changes: 9 additions & 0 deletions bors.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
status = [
"Test summary",
]

required_approvals = 1

delete_merged_branches = true

commit_title = "merge: ${PR_REFS}"

0 comments on commit 7a78583

Please sign in to comment.