Skip to content

Commit

Permalink
ci: requires test_gitoxide and lockfile for both bors success and…
Browse files Browse the repository at this point in the history
… failure
  • Loading branch information
weihanglo committed Apr 24, 2023
1 parent a4a8bd1 commit b2f16d1
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,14 @@ jobs:
permissions:
contents: none
name: bors build finished
needs: [docs, rustfmt, test, resolver, build_std, test_gitoxide]
needs:
- build_std
- docs
- lockfile
- resolver
- rustfmt
- test
- test_gitoxide
runs-on: ubuntu-latest
if: "success() && github.event_name == 'push' && github.ref == 'refs/heads/auto-cargo'"
steps:
Expand All @@ -215,7 +222,14 @@ jobs:
permissions:
contents: none
name: bors build finished
needs: [docs, rustfmt, test, resolver, build_std]
needs:
- build_std
- docs
- lockfile
- resolver
- rustfmt
- test
- test_gitoxide
runs-on: ubuntu-latest
if: "!success() && github.event_name == 'push' && github.ref == 'refs/heads/auto-cargo'"
steps:
Expand Down

0 comments on commit b2f16d1

Please sign in to comment.