Skip to content

Commit

Permalink
feat: eslint 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
gudusol committed May 18, 2024
1 parent 1ae6296 commit 6d64809
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 18 deletions.
18 changes: 0 additions & 18 deletions .eslintrc.cjs

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/vercelDeploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Synchronize to forked repo
on:
push:
branches:
- main

jobs:
sync:
name: Sync forked repo
runs-on: ubuntu-latest

steps:
- name: Checkout main
uses: actions/checkout@v4
with:
token: ${{ secrets.FORKED_REPO_TOKEN }}
fetch-depth: 0
ref: main

- name: Add remote-url
run: |
git remote add forked-repo https://gudusol:${{ secrets.FORKED_REPO_TOKEN }}@github.com/gudusol/sopkathon-client
git config user.name gudusol
git config user.email [email protected]
- name: Push changes to forked-repo
run: |
git push -f forked-repo main
- name: Clean up
run: |
git remote remove forked-repo

0 comments on commit 6d64809

Please sign in to comment.