Skip to content

♻️ Sync changes from upstream template #16

♻️ Sync changes from upstream template

♻️ Sync changes from upstream template #16

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