From c4ad85fff40d065fdbb66011168e906da8f3bb1e Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Fri, 14 Jul 2023 00:36:59 +0300 Subject: [PATCH] Created `karbs` auto clone --- .github/workflows/clone_karbs.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/clone_karbs.yml diff --git a/.github/workflows/clone_karbs.yml b/.github/workflows/clone_karbs.yml new file mode 100644 index 0000000..aff4d4f --- /dev/null +++ b/.github/workflows/clone_karbs.yml @@ -0,0 +1,18 @@ +name: Clone karbs repo into a subfolder +on: + # This workflow will be triggered when code is pushed to the repository + push: + branches: [main] +jobs: + build: + runs-on: ubuntu-latest + steps: + # Checkout the main repository code + - name: Checkout main repository + uses: actions/checkout@v2 + # Clone karbs repository into a specific subfolder + - name: Checkout karbs repository + uses: actions/checkout@v2 + with: + repository: "kristoferssolo/karbs" + path: "src/apps/projects/templates/karbs/karbs"