Skip to content

♻️ Sync changes from upstream template #18

♻️ Sync changes from upstream template

♻️ Sync changes from upstream template #18

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