Skip to content
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

PRをgit merge --ff-onlyできるようにする #35

Merged
merged 1 commit into from
Apr 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,10 @@ close #0
-->

## その他

<!--
VOICEVOX/voicevox_coreの変更を取り込むときだけこのチェックボックスに`x`を付けます。
このチェックボックスをチェックしても強制力が発生したりしないので、GitHubのUIで間違えて「通常のマージ」をしないように気を付ける必要があります。
CIが通ってレビューも完了してからラベル`ff-merge`を手動で付けると、ワークフロー`FF merge`が作動して`--ff-only`のマージが行われます。
-->
- [ ] 本PRは`--ff-only`でマージする。GitHubのUIでマージされるべきではない
35 changes: 35 additions & 0 deletions .github/workflows/ff-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# PRに手動で`ff-merge`というラベルを付けると、このworkflowが起動して`--ff-only`なマージが行われる。
#
# VOICEVOX/voicevox_coreの変更を、CIのチェックとレビューを通してかつ単純なコミットログの状態で取り込むことが目的。
# VOICEVOX/voicevox_coreの`main`を`git merge`したものをPRとして出し、それをこのworkflowでSHAREVOXの`main`に取り込む。

name: FF merge
on:
pull_request:
types:
- labeled

jobs:
merge-upstream:
runs-on: ubuntu-latest
if: github.event.label.name == 'ff-merge'

steps:
- uses: actions/checkout@v3
with:
ref: main
submodules: true

- name: FF merge
shell: bash
run: |
# https://github.com/robotology/gh-action-nightly-merge/pull/13
git config --global --add safe.directory "$GITHUB_WORKSPACE"

git remote add target "https://x-access-token:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY.git"

git fetch origin ${{ github.event.pull_request.head.sha }}
git merge --ff-only ${{ github.event.pull_request.head.sha }}
git push target main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}