랜덤 스폰 위치 구현 #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fast Forward Merge | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
fast-forward-merge: | |
if: | | |
github.event.issue.pull_request && | |
contains(github.event.comment.body, '/fast-forward') && | |
(github.triggering_actor == 'onee-only' || github.triggering_actor == 'byundojin') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fast Forward PR | |
uses: endre-spotlab/fast-forward-js-action@2.1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.FAST_FORWARD_GITHUB_TOKEN }} | |
success_message: "Success! Fast forwarded target_base to source_head! git checkout target_base && git merge source_head --ff-only " | |
failure_message: "Failed! Cannot do fast forward!" | |
production_branch: "main" | |
staging_branch: "develop" |