Skip to content

Commit

Permalink
Merge pull request #38 from ronati/support-object-type
Browse files Browse the repository at this point in the history
test: Added autosync for beta branch
  • Loading branch information
adanylenko authored Mar 19, 2024
2 parents 3a50b43 + 51884e3 commit b13e96e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/sync-beta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Sync
on:
push:
branches:
- main

jobs:
sync-branches:
runs-on: ubuntu-latest
name: Syncing branches
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "20.x"
- name: Opening pull request
id: pull
uses: tretuna/[email protected]
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
FROM_BRANCH: "main"
TO_BRANCH: "beta"
PULL_REQUEST_AUTO_MERGE_METHOD: merge

0 comments on commit b13e96e

Please sign in to comment.