Remove broken ci-success check
Previously, Zebra made ci-success a required check for merges to main. And then we made ci-success depend on a bunch of other CI checks. But this doesn't work as expected, because if the dependent checks fail, ci-success is skipped, and the branch protection rules allow the branch to be merged to main.
This commit is contained in:
parent
7e395298f1
commit
f33db69267
|
@ -9,18 +9,6 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
ci-success:
|
|
||||||
name: 🏁
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs:
|
|
||||||
- test
|
|
||||||
- build
|
|
||||||
- build-chain-no-features
|
|
||||||
- clippy
|
|
||||||
- fmt
|
|
||||||
steps:
|
|
||||||
- run: exit 0
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
name: Test (+${{ matrix.rust }}) on ${{ matrix.os }}
|
name: Test (+${{ matrix.rust }}) on ${{ matrix.os }}
|
||||||
# The large timeout is to accommodate Windows builds
|
# The large timeout is to accommodate Windows builds
|
||||||
|
|
Loading…
Reference in New Issue