From 6b7d8134f0392f486416db5c6cf8e61b9213f906 Mon Sep 17 00:00:00 2001 From: Justin Stephenson Date: Wed, 10 May 2023 10:45:33 -0400 Subject: [PATCH] Add template sync to cockpit starter kit --- .github/workflows/template-sync.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/template-sync.yml diff --git a/.github/workflows/template-sync.yml b/.github/workflows/template-sync.yml new file mode 100644 index 0000000..e719975 --- /dev/null +++ b/.github/workflows/template-sync.yml @@ -0,0 +1,19 @@ +# File: .github/workflows/template-sync.yml + +on: + schedule: + - cron: "0 0 1 * *" + workflow_dispatch: +jobs: + repo-sync: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: actions-template-sync + uses: AndreasAugustin/actions-template-sync@v0.8.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + source_repo_path: cockpit-project/starter-kit + upstream_branch: main