Skip to content
Merged
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
20 changes: 13 additions & 7 deletions .github/workflows/merge-main-to-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,19 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v6
with:
ref: development
ref: main
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
- name: Merge main into development
uses: devmasx/merge-branch@v1.4.0
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
type: now
from_branch: main
target_branch: development
github_token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
branch: sync-main-to-development
base: development
Comment thread
mikib0 marked this conversation as resolved.
title: "chore: sync main to development"
body: |
Automated PR to sync changes from `main` to `development`.

This PR is created automatically when changes are pushed to `main`.
labels: automated
delete-branch: true
Loading