From ab1d78bfa0cb5863ba31f53462960ad916e13cae Mon Sep 17 00:00:00 2001 From: Jeongwoo Park <121204715+lurgi@users.noreply.github.com> Date: Fri, 20 Sep 2024 09:39:16 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20build=20yml=20=EC=9E=91=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-clone.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/build-clone.yml diff --git a/.github/workflows/build-clone.yml b/.github/workflows/build-clone.yml new file mode 100644 index 0000000..5a73e32 --- /dev/null +++ b/.github/workflows/build-clone.yml @@ -0,0 +1,20 @@ +name: Clone Repository on Build Branch Push + +on: + push: + branches: + - build + +jobs: + clone_repo: + runs-on: ubuntu-latest + + steps: + - name: Checkout the repository + uses: actions/checkout@v3 + + - name: Clone the repository to personal account + run: | + git clone https://@github.com/lurgi/wanna-woowa-blog.git + env: + PERSONAL_ACCESS_TOKEN: ${{ secrets.LURGI_PERSONAL_ACCESS_TOKEN }}