[Chore] [GGFE-208] token 추가 #2
Workflow file for this run
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: Test Deploy to Vercel | |
# 실행에 앞서 vercel과 연동되어 있는 fork된 repository가 필요합니다. | |
# 실행에 필요한 secret을 설정해야 합니다. | |
# - TEST_DEPLOY_REPO_OWNER : fork-sync로 동기화할 repo의 owner | |
# - TEST_DEPLOY_REPO_OWNER_TOKEN : fork-sync로 동기화할 repo의 owner의 token (read and write permission 필요) | |
# Parameters | |
# - owner : fork-sync로 동기화할 repo의 owner | |
# - base, head : 동기화할 브랜치 (from head to base) | |
on: | |
push: | |
branches: | |
# - test-deploy | |
- GGFE-208-test-deploy-브랜치-설정 | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fork-sync | |
uses: tgymnich/[email protected] | |
with: | |
token: ${{ secrets.TEST_DEPLOY_REPO_OWNER_TOKEN }} | |
owner: ${{ secrets.TEST_DEPLOY_REPO_OWNER }} | |
base: GGFE-208-test-deploy-브랜치-설정 | |
head: test-test-deploy |