Remove language files other than English #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 }} |