Skip to content

Merge branch 'main' into fixes/update-billing-test-helper #55

Merge branch 'main' into fixes/update-billing-test-helper

Merge branch 'main' into fixes/update-billing-test-helper #55

Workflow file for this run

name: Auto Merge main
# on:
# push:
# branches:
# - main
jobs:
merge_main:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Git
run: |
git config --global user.name "GitHub Actions Bot"
git config --global user.email "[email protected]"
- name: Merge main into edge
run: |
git checkout edge
git merge main --no-edit
git push origin edge