Aman-Mittal commented on code in PR #5313:
URL: https://github.com/apache/fineract/pull/5313#discussion_r2681795804


##########
.github/workflows/verify-liquibase-backward-compatibility.yml:
##########
@@ -0,0 +1,163 @@
+name: Verify Liquibase Backward Compatibility
+
+on: [pull_request]
+
+permissions:
+  contents: read
+
+jobs:
+  liquibase-backward-compatibility-check:
+    runs-on: ubuntu-24.04
+    timeout-minutes: 30
+
+    services:
+      postgresql:
+        image: postgres:17.4
+        ports:
+          - 5432:5432
+        env:
+          POSTGRES_USER: root
+          POSTGRES_PASSWORD: postgres
+        options: >-
+          --health-cmd="pg_isready -q -d postgres -U root"
+          --health-interval=5s
+          --health-timeout=2s
+          --health-retries=5
+
+    env:
+      DB_USER: root
+      DB_PASSWORD: postgres
+      DB_NAME: fineract_default
+      TZ: Asia/Kolkata
+
+    steps:
+      - name: Checkout the base branch (`develop`)
+        uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5

Review Comment:
   just crosschecked
    - /usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules 
origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*
     From https://github.com/Aman-Mittal/fineract
      * [new branch]          FINERACT-2326/Refactor-some-logical-codes -> 
origin/FINERACT-2326/Refactor-some-logical-codes
      * [new branch]          FINERACT-2326/depricated-code-and-optimizations 
-> origin/FINERACT-2326/depricated-code-and-optimizations
      * [new branch]          FINERACT-2346/Refactor-maintainability-issue -> 
origin/FINERACT-2346/Refactor-maintainability-issue
      * [new branch]          FINERACT-2346/sonarqube-fixes -> 
origin/FINERACT-2346/sonarqube-fixes
      * [new branch]          FINERACT-2402/kafka-docker-update -> 
origin/FINERACT-2402/kafka-docker-update
      * [new branch]          FINERACT-2402/kafka-server-env-changes -> 
origin/FINERACT-2402/kafka-server-env-changes
      * [new branch]          FINERACT-2421/antMatcher-deprecation -> 
origin/FINERACT-2421/antMatcher-deprecation
      * [new branch]          FINERACT-2421/maintainabilility-refractor-phase-3 
-> origin/FINERACT-2421/maintainabilility-refractor-phase-3
      * [new branch]          FINERACT-2421/maintainability-refractor-phase-4 
-> origin/FINERACT-2421/maintainability-refractor-phase-4
      * [new branch]          FINERACT-2421/maintainability-refractor-phase-5 
-> origin/FINERACT-2421/maintainability-refractor-phase-5
      * [new branch]          FINERACT-2421/verify-liquibase-compability -> 
origin/FINERACT-2421/verify-liquibase-compability
   
   When we create PR- it checks the forked branch repo, based on to where PR is 
trying to merge when i raised the pr against my forked develop it checked out 
to my forked develop branch
   
   
   
https://github.com/Aman-Mittal/fineract/actions/runs/20916627097/job/60091598962?pr=4
   
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to