Skip to content

Commit

Permalink
Rewrite pr recipe to merge when CI passes
Browse files Browse the repository at this point in the history
type: development
  • Loading branch information
casey committed Apr 8, 2020
1 parent b16da8d commit 4c90bc4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,13 @@ check: test clippy lint check-minimal-versions
git diff --no-ext-diff --quiet --exit-code

pr: push
#!/usr/bin/env bash
set -euxo pipefail
hub pull-request -o
while ! hub ci-status --verbose; do
sleep 10
done
just done
publish-check: check check-man
cargo outdated --exit-code 1
Expand Down

0 comments on commit 4c90bc4

Please sign in to comment.