Skip to content

Commit

Permalink
자동배포 임시 중지
Browse files Browse the repository at this point in the history
name: 레포지토리 최신화
on:
  workflow_dispatch:
  schedule: 
  - cron: "0 8 * * *" #Runs at 8:00 UTC(5:00 in Korea) every day.

jobs:
  merge:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Merge upstream
        run: |
          git config --global user.name 'kanguk01'
          git config --global user.email '[email protected]'
          # "git checkout master" is unnecessary, already here by default
          git pull --unshallow  # this option is very important, you would get
                                # complains about unrelated histories without it.
                                # (but actions/checkout@v2 can also be instructed
                                # to fetch all git depth right from the start)
          git remote add upstream https://github.com/kakao-tech-campus-2nd-step3/Team3_FE.git
          git fetch upstream
          git checkout master
          git merge -Xtheirs upstream/master
          git push origin master
  • Loading branch information
kanguk01 authored Nov 1, 2024
1 parent f5b546b commit c0fd85d
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1 @@
name: 레포지토리 최신화
on:
workflow_dispatch:
schedule:
- cron: "0 8 * * *" #Runs at 8:00 UTC(5:00 in Korea) every day.

jobs:
merge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Merge upstream
run: |
git config --global user.name 'kanguk01'
git config --global user.email '[email protected]'
# "git checkout master" is unnecessary, already here by default
git pull --unshallow # this option is very important, you would get
# complains about unrelated histories without it.
# (but actions/checkout@v2 can also be instructed
# to fetch all git depth right from the start)
git remote add upstream https://github.com/kakao-tech-campus-2nd-step3/Team3_FE.git
git fetch upstream
git checkout master
git merge -Xtheirs upstream/master
git push origin master

0 comments on commit c0fd85d

Please sign in to comment.