Skip to content
Closed

sync #5773

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/prod-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Merge to production

permissions:
contents: write

on:
schedule:
- cron: "15 0 * * *" # 00:15 every day
workflow_dispatch:

jobs:
merge_to_prod:
name: Merge from main branch to production branch
runs-on: ubuntu-latest
if: ${{ github.event.repository.fork }}
steps:
- name: Merge branch
uses: devmasx/merge-branch@1.4.0
with:
target_branch: production
from_branch: main
github_token: ${{ secrets.GITHUB_TOKEN }}
40 changes: 0 additions & 40 deletions .github/workflows/sync.yml

This file was deleted.