-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rebase fix #730
Rebase fix #730
Conversation
Treating build_and_test_act.yaml as a Workflow definition |
20261e6
to
aa870dc
Compare
Treating build_and_test_act.yaml as a Workflow definition |
By default checkout fetches only latest commit
fetch-depth: 1
.To rebase we need to fetch some amount of commits PR commits + previous one, and then you can rebase it. But in GA you cant determine amount of commits to fetch so we fetch all
fetch-depth: 0
but realistically we can fetch some ambigious amount like 100 and this should be enough in most cases.