-
Notifications
You must be signed in to change notification settings - Fork 82
fix(release): fix svn add command and add script to generate release notes #249
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
Conversation
dev/release/post-website.sh
Outdated
| if [ ${previous_major_version} -eq ${major_version} ]; then | ||
| release_type=patch | ||
| else | ||
| release_type=major | ||
| fi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add "minor" release detection?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added
dev/release/post-website.sh
Outdated
|
|
||
| pushd "${ARROW_SITE_DIR}" | ||
| DEFAULT_BRANCH="$(git rev-parse --abbrev-ref origin/HEAD | sed s@origin/@@)" | ||
| git fetch --all --prune --tags --force -j$(nproc) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you add a check whether this working copy is a fork not apache/arrow-site?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added
Co-authored-by: Sutou Kouhei <[email protected]>
Co-authored-by: Sutou Kouhei <[email protected]>
Co-authored-by: Sutou Kouhei <[email protected]>
Co-authored-by: Sutou Kouhei <[email protected]>
Co-authored-by: Sutou Kouhei <[email protected]>
kou
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
Rationale for this change
Ease of utility for release process
What changes are included in this PR?
Fixing
svn addcommand to explicitly refer to the directory so it doesn't present an error anymore.Add script to generate the markdown page for adding release notes to the arrow-site repo.