Skip to content

Commit

Permalink
Merge pull request #222 from xmtp/cv/schedule-pr-sync-beta
Browse files Browse the repository at this point in the history
Schedules PR of main to beta Mon at 1:05AM PT
  • Loading branch information
cameronvoell authored Jan 25, 2024
2 parents 06cf2b6 + cee2572 commit 456b87d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/syncBeta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Auto PR Creation
on:
schedule:
- cron: '5 9 * * 5' # Runs at 1:05 AM PT(-8) every Monday (time in UTC)
workflow_dispatch:

jobs:
create-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Create Pull Request
uses: repo-sync/pull-request@v2
with:
source_branch: "main"
destination_branch: "beta"
pr_title: "`main` => `beta`"
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 456b87d

Please sign in to comment.