♻️ Sync changes from upstream template #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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.1.7 | |
with: | |
token: ${{ secrets.WORKFLOW_TOKEN }} | |
- name: ♻️ Sync changes from upstream template | |
uses: AndreasAugustin/actions-template-sync@v2.2.3 | |
with: | |
github_token: ${{ secrets.WORKFLOW_TOKEN }} | |
source_repo_path: wayofdev/docker-shared-services | |
upstream_branch: master | |
pr_labels: 'type: maintenance' | |
... |