From 6fd0d2c554ae8971503364c1368f01b59fe56564 Mon Sep 17 00:00:00 2001 From: Cher-Tian Ser <45384530+chertianser@users.noreply.github.com> Date: Thu, 8 Aug 2024 01:54: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 000000000000..887bf15e87ba --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,20 @@ +name: Sync from template +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