diff --git a/.github/workflows/template-sync.yml b/.github/workflows/template-sync.yml new file mode 100644 index 0000000..36f2d6f --- /dev/null +++ b/.github/workflows/template-sync.yml @@ -0,0 +1,17 @@ +on: + schedule: + - cron: "0 0 * * 1" # triggers on midnight on every monday + workflow_dispatch: # allow manual triggers +jobs: + repo-sync: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + steps: + - uses: actions/checkout@v4 # clone repo + - name: Sync repository with upstream template + uses: AndreasAugustin/actions-template-sync@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + source_repo_path: blue-build/template diff --git a/.templatesyncignore b/.templatesyncignore new file mode 100644 index 0000000..c1a2e75 --- /dev/null +++ b/.templatesyncignore @@ -0,0 +1,3 @@ +/modules/* +/config/* +README.md \ No newline at end of file