Skip to content

Commit

Permalink
ci: added workflow for syncing fork
Browse files Browse the repository at this point in the history
  • Loading branch information
kieranbrown committed Jan 5, 2024
1 parent d87642b commit 20f8d35
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/sync-fork.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Sync Fork

on:
workflow_dispatch:
schedule:
- cron: '0 8 * * 1' # every Monday at 08:00

concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false

permissions:
pull-requests: write

jobs:
sync:
runs-on: ubuntu-latest
timeout-minutes: 5
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

0 comments on commit 20f8d35

Please sign in to comment.