Skip to content

♻️ Sync changes from upstream template #5

♻️ Sync changes from upstream template

♻️ Sync changes from upstream template #5

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@5584bd1e260ef04a0dce76e1a802e31befd6f5c4 # v1.1.2
with:
github_token: ${{ secrets.WORKFLOW_TOKEN }}
source_repo_path: wayofdev/laravel-cycle-starter-tpl
upstream_branch: master
pr_labels: 'type: maintenance'
...