Skip to content

Commit

Permalink
add sync to production
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocupe committed Sep 12, 2024
1 parent 9eeb9fc commit dc3baf2
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/sync-to-production.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Sync
on:
push:
branches:
- main

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

0 comments on commit dc3baf2

Please sign in to comment.