Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Bowles <benjamin.d.bowles@gmail.com>
  • Loading branch information
HoleInOneGolfer authored Jul 30, 2024
1 parent 620c449 commit 342c76b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/template-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# File: .github/workflows/template-sync.yml

name: Template Sync
on:
# cronjob trigger
schedule:
- cron: "0 0 1 * *"
# manual trigger
workflow_dispatch:
jobs:
repo-sync:
runs-on: ubuntu-latest
# https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
permissions:
contents: write
pull-requests: write
actions: write


steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.MOVED_CLASSIC_PAT_TOKEN }}

- name: actions-template-sync
uses: AndreasAugustin/actions-template-sync@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
source_repo_path: HoleInOneStudios/Repo-Template

0 comments on commit 342c76b

Please sign in to comment.