netzbeere-web/.github/workflows/sync-back-to-dev.yml
XhmikosR d28a5e7019 Streamline actions, format and switch to Node.js 22
Signed-off-by: XhmikosR <xhmikosr@gmail.com>
2025-03-30 11:13:02 +03:00

21 lines
530 B
YAML

name: Sync Back to Development
on:
push:
branches:
- master
jobs:
sync-branches:
runs-on: ubuntu-latest
name: Syncing branches
steps:
- name: Clone repository
uses: actions/checkout@v4.2.2
with:
persist-credentials: false
- name: Opening pull request
run: gh pr create -B development -H master --title 'Sync master back into development' --body 'Created by Github action' --label 'internal'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}