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@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
with:
token: ${{ secrets.WORKFLOW_TOKEN }}
- name: ♻️ Sync changes from upstream template
uses: AndreasAugustin/actions-template-sync@c6631d6e8aa5de34b29cd5b3a4c22327a159fc12 # v1.1.8
with:
github_token: ${{ secrets.WORKFLOW_TOKEN }}
source_repo_path: wayofdev/docker-shared-services
upstream_branch: master
pr_labels: "type: maintenance"
...