Skip to content

Ewm6552 fix incorrect error (#437) #12

Ewm6552 fix incorrect error (#437)

Ewm6552 fix incorrect error (#437) #12

Workflow file for this run

# this uses the action to merge special branches on push
# https://github.com/marketplace/actions/merge-branch
name: Merge protected branches
on:
workflow_dispatch:
push:
branches: [staging]
jobs:
merge-staging-into-next:
runs-on: ubuntu-latest
if: ${{ github.ref_name == 'staging' }}
steps:
- uses: actions/checkout@v4
- name: Merge staging into next
uses: devmasx/[email protected]
with:
type: now
target_branch: next
message: Merge staging into next
github_token: ${{ secrets.GITHUB_TOKEN }}