Skip to content

♻️ Sync changes from upstream template #11

♻️ Sync changes from upstream template

♻️ Sync changes from upstream template #11

Workflow file for this run

---
on: # yamllint disable-line rule:truthy
# Trigger At 00:00 on each 1st day of month
schedule:
- cron: '0 0 1 * *'
# Manual trigger
workflow_dispatch:
name: ♻️ Sync changes from upstream template
jobs:
repo-sync:
runs-on: ubuntu-latest
steps:
- name: 📦 Check out the codebase
uses: actions/checkout@v4
with:
token: ${{ secrets.WORKFLOW_TOKEN }}
- name: ♻️ Sync changes from upstream template
uses: AndreasAugustin/actions-template-sync@33f86ba0dbd01d559b5ce5d28482148622555b11 # v1.5.0
with:
github_token: ${{ secrets.WORKFLOW_TOKEN }}
source_repo_path: wayofdev/laravel-cycle-starter-tpl
upstream_branch: master
pr_labels: 'type: maintenance'
...