This is an automated email from the ASF dual-hosted git repository. aleks pushed a commit to branch feature/PS-15 in repository https://gitbox.apache.org/repos/asf/fineract.git
commit 7089b01e921c7b5feee078e99c59d2f749d91c74 Author: Aleks <[email protected]> AuthorDate: Mon Oct 10 16:28:42 2022 +0200 PS-15: Synchronize the openmf develop branch with upstream --- .github/workflows/sync.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml new file mode 100644 index 000000000..a853db91f --- /dev/null +++ b/.github/workflows/sync.yml @@ -0,0 +1,24 @@ +name: Sync Upstream Fineract + +# This runs every hour +on: + schedule: + - cron: '0 * * * *' + # Allows manual workflow run (must in default branch to work) + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-20.04 + + steps: + - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3 + - name: Sync + run: | + set -ex; + git config --local user.email "[email protected]"; + git config --local user.name "Aleksandar Vidakovic"; + git remote add upstream "https://github.com/apache/fineract.git"; + git fetch upstream; + git rebase upstream/develop develop; + git push -f;
