We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f5788e commit 8800257Copy full SHA for 8800257
.github/bors.toml
.github/workflows/full-ci.yml
@@ -8,10 +8,7 @@ name: Full CI
8
9
on:
10
merge_group:
11
- push:
12
- branches:
13
- - staging
14
- - trying
+# push:
15
16
env:
17
GDEXT_FEATURES: ''
@@ -328,9 +325,9 @@ jobs:
328
325
# CI status report
329
326
330
327
# Job to notify merge queue about success/failure
331
- # 'push' is for workflows still triggered by bors
332
ci-status:
333
- if: always() && (github.event_name == 'merge_group' || github.event_name == 'push')
+ # Check for 'merge_group' not strictly necessary, but helpful when adding add-hoc `push:` trigger to `on:` for testing branch.
+ if: always() && github.event_name == 'merge_group'
334
needs:
335
- rustfmt
336
- doc-lints
0 commit comments