Skip to content

Commit

Permalink
feat: start using actions-template-sync
Browse files Browse the repository at this point in the history
  • Loading branch information
xynydev committed Feb 20, 2024
1 parent 106b868 commit 6d82cd9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/template-sync.yml
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions .templatesyncignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/modules/*
/config/*
README.md

0 comments on commit 6d82cd9

Please sign in to comment.