Skip to content

Add get call back to application controller test #63

Add get call back to application controller test

Add get call back to application controller test #63

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