Skip to content

Commit 6e6602d

Browse files
authored
Auto merge of #245 - servo:jdm-patch-1, r=jdm
Add homu result. None
2 parents 2f87edd + 3a35e76 commit 6e6602d

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Run CI
22
on:
33
push:
4-
branches: ["master"]
4+
branches: ["auto"]
55
pull_request:
66
branches: ["**"]
77

@@ -44,3 +44,18 @@ jobs:
4444
if [ ${{ matrix.rust }} = nightly ]; then
4545
cd integration-tests && cargo test --features unstable && cd ..;
4646
fi
47+
48+
49+
build_result:
50+
name: homu build finished
51+
runs-on: ubuntu-latest
52+
needs:
53+
- "ci"
54+
55+
steps:
56+
- name: Mark the job as successful
57+
run: exit 0
58+
if: success()
59+
- name: Mark the job as unsuccessful
60+
run: exit 1
61+
if: "!success()"

0 commit comments

Comments
 (0)