Sync with the Wingman template #98
This file contains hidden or 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
name: Sync with the Wingman template | |
on: | |
schedule: | |
- cron: '0 0 * * *' # every day at midnight | |
workflow_dispatch: | |
jobs: | |
sync: | |
name: Sync template | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Sync template | |
uses: AndreasAugustin/actions-template-sync@v2 | |
with: | |
source_repo_path: adelrodriguez/wingman | |
upstream_branch: main | |
pr_labels: template_sync | |
pr_title: Sync the latest `wingman` template changes | |
is_pr_cleanup: true |