Skip to content

Delete .DS_Store

Delete .DS_Store #6

Workflow file for this run

# In order to use the development branch in Composer without versioning issues, we need a branch called main,
# as it thinks the default branch is an invalid version constraint, and we can't rename the default branch
# without losing fork syncing functionality. So this workflow mirrors the default branch to the main one.
name: Sync main branch
on:
push:
branches: [ "2.x" ]
permissions:
contents: write
jobs:
sync-main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Merge into Release
uses: devmasx/merge-branch@854d3ac71ed1e9deb668e0074781b81fdd6e771f
with:
type: now
from_branch: 2.x
target_branch: main
github_token: ${{ github.token }}