From de7efbb0fcffd30f8352b7f8cdf0c03be538eeca Mon Sep 17 00:00:00 2001 From: Chloe <56209417+chloeho7@users.noreply.github.com> Date: Thu, 13 Jun 2024 23:42:40 -0400 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..ee4377b --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,20 @@ +name: Sync from template 2 +on: + # cronjob trigger + schedule: + - cron: "0 0 1 * *" + # manual trigger + workflow_dispatch: +jobs: + repo-sync: + runs-on: ubuntu-latest + steps: + # To use this repository's private action, you must check out the repository + - name: Checkout + uses: actions/checkout@v4 + - name: actions-template-sync + uses: AndreasAugustin/actions-template-sync@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + source_repo_path: alshedivat/al-folio + upstream_branch: master