We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9127568 + 09d5449 commit 239f10fCopy full SHA for 239f10f
.github/workflows/ci.yml
@@ -111,3 +111,23 @@ jobs:
111
112
- name: Build Chalk book
113
run: cd book && ./mdbook build
114
+
115
+ end-success:
116
+ name: bors build finished
117
+ if: success()
118
+ runs-on: ubuntu-latest
119
+ needs: [test, fmt]
120
121
+ steps:
122
+ - name: Mark the job as successful
123
+ run: exit 0
124
125
+ end-failure:
126
127
+ if: "!success()"
128
129
130
131
132
+ - name: Mark the job as a failure
133
+ run: exit 1
0 commit comments