From 3fc2da080c13ee1f72e7fa63e3397dabc44f6dd2 Mon Sep 17 00:00:00 2001 From: Siril Dukkipati <45705610+siril-teja@users.noreply.github.com> Date: Wed, 19 Jun 2024 14:31:09 -0400 Subject: [PATCH] Create SyncFromTemplate.yml --- .github/workflows/SyncFromTemplate.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/SyncFromTemplate.yml diff --git a/.github/workflows/SyncFromTemplate.yml b/.github/workflows/SyncFromTemplate.yml new file mode 100644 index 000000000000..887bf15e87ba --- /dev/null +++ b/.github/workflows/SyncFromTemplate.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