Sync Fork #25
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
name: Sync Fork | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 8 * * 1' # every Monday at 08:00 | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- uses: tgymnich/[email protected] | |
with: | |
pr_title: 'chore: sync fork with upstream' | |
owner: aws-ia | |
base: main | |
head: main | |
retries: 3 | |
retry_after: 10 |