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 eeb34bb commit 9623080Copy full SHA for 9623080
Justfile
@@ -34,10 +34,6 @@ pr PR_NUMBER CMD:
34
docker build --build-arg PR_NUMBER={{PR_NUMBER}} --build-arg GH_TOKEN=$(gh auth token) --target pr-tester -t git-ai-pr-tester .
35
docker run -i --rm -e GITHUB_TOKEN=$(gh auth token) git-ai-pr-tester bash -c "{{CMD}}"
36
37
-# Sync all open PRs with origin/main
38
-sync-prs:
39
- ./scripts/sync-all-prs
40
-
41
# Sync a specific PR with origin/main
42
sync-pr PR_NUM:
43
- just pr {{PR_NUM}} "git fetch origin main && git merge origin/main --no-edit && cargo fmt --all && cargo check && git push origin HEAD"
+ just pr {{PR_NUM}} "git merge origin/main --no-edit && cargo fmt --check && cargo check && git push origin HEAD"
0 commit comments